Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Go-Anna
Contributor III
Contributor III

Tooltip insert a line break

Hi!

I would like to make breaks between the text  in my custom Tooltip in Qlik Sense (Tree Chart).

Grateful for help.

(Chr 10 &/ Chr 13 don't work)

Thanks.

Labels (3)
1 Solution

Accepted Solutions
Anil_Babu_Samineni

You can make same for third expression as well, I don't see any issue

Dual(Expression1 & Chr(10) & Expression2 & Chr(10) & Expression3, Expression1)

//Expression1 : This is for data points what you get

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

8 Replies
Anil_Babu_Samineni

What do you need and trying? Can you explain little more

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Go-Anna
Contributor III
Contributor III
Author

Hi! Thanks! I want my tooltip to show 3 lines of text according to below. But after I finish editing the tooltip just shows it all together .... with no logical line-breaks.

Go-Anna_1-1605548414858.png

 

Anil_Babu_Samineni

Tooltip using just to bubble selection which is tiny but as per your statement there is no function used and It is returning field. So field never get value.

Is there a way that you can get QVF for us to work and more explanation with screenshot?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Go-Anna
Contributor III
Contributor III
Author

Go-Anna_0-1605549373895.png

This is what my tooltip looks like after editing.

 

Anil_Babu_Samineni

Boom, Can we sat this as mouseover text because in Qlik Sense Tooltip concept is different.

BTW, You have to manipualte with expression like below

Dual(Expression1 & Chr(10) & Expression2 & Chr(10) & Expression2, Expression1)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Go-Anna
Contributor III
Contributor III
Author

That worked for 2 lines....how do I get the third one in? Do I make expression 1 a dual expression so I have 2 duals (and three lines)?

Anil_Babu_Samineni

You can make same for third expression as well, I don't see any issue

Dual(Expression1 & Chr(10) & Expression2 & Chr(10) & Expression3, Expression1)

//Expression1 : This is for data points what you get

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
teemus
Partner - Contributor III
Partner - Contributor III

Hello,

 

This worked for me 

 

= TEXT(

'A' & Expression 1 & CHR(10) & 'B' & Expression 2

)