Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
robb183
Contributor III
Contributor III

Tooltip maximum capacity

Hello everyone,

how many characters can the tooltip contain?In the June 2020 version.

Thank you

Labels (1)
2 Replies
stevedark
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi @robb183 

No idea. Suggest finding out by creating a variable in the load script that is large and see how much of it you can see. Use something like:

let vBigString = '';
for iRow = 1 to 100
    let vRow = num(iRow, '000');
    for iChar = 1 to 100
       let vRow = vRow & right(iChar,1);
    next
    let vBigString = vBigString & vRow & '
';
next

You can then put =vBigString in the tooltip and see how it gets on. You could perhaps start smaller and grow it, perhaps 10x10 first.

Please post back what you find out.

Cheers,
Steve

Kushal_Chawda