Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

ToolTip issues in Bar Chart

Hi all,

This is the expressions I created for a specific chart:

Capture.JPG.jpg

This is how it looks in the chart tooltip:

2013-11-14_135119.jpg

Why aren't they in the same order?

why does the Non candidates duplicate itself?

and why don't I see the name like in the Non Candidates?

Please Assist,

Boris

1 Solution

Accepted Solutions
johnca
Specialist
Specialist

Boris, you can create your own popup.

Uncheck the box "Text as Pop-up" for the shown expression. Create anew expression such as;

='Unique subscribers: ' & Count(Subscribers)

&chr(10)& 'Candidates: ' & Count(Candidates)

&chr(10)& 'Smart MA Decisions: ' & Count(Decisions)

&chr(10)& 'SMA by RT: ' & Count(SMA)

&chr(10)& 'Non Candidates: ' & Count(Non_Candidates)

and check the box "Text as Pop-up".

Uncheck the bar, symbol, etc, so it shows a popup icon (you may also leave it as is...it won't calculate and display a bar).

On the presentation tab uncheck "Popup Labels".

Then, your popup with appear like the following;

Unique subscribers: (value)

Candidates: ' (value)

Smart MA Decisions: (value)

SMA by RT: (value)

Non Candidates: (value)

You can then write the expression to show details in any order you wish. You can even embellish the information further.

--john

View solution in original post

11 Replies
sudeepkm
Specialist III
Specialist III

Can you pls upload the sample qvw?  Do you have any sorting applied on your dimension values?

Not applicable
Author

only sorting the Run ID - this is the only dimension

how can I upload a sample qvw?

sudeepkm
Specialist III
Specialist III

while replying use advanced editor and use attach file.

advnc.png

Not applicable
Author

my mistake, I meant how do I create a sample qvw?

the model is quite complex

jvishnuram
Partner - Creator III
Partner - Creator III

Hi Boris,

You need to uncheck the 'TEXT AS POP UP' option for each and every expression., which is there in the bottom of expression tab.

VJ
sebastiandperei
Specialist
Specialist

Unmark "Text as Pop-Up", and then you will only get the values you are pointing with cursor.

The order can't be changed.

Not applicable
Author

Hi Boris,

if you don't want expressions duplicate, you have to uncheck the box which displays pop-up when displya value box is checked (in expression tab, click on expression, uncheck box)

best regards

chris

johnca
Specialist
Specialist

Boris, you can create your own popup.

Uncheck the box "Text as Pop-up" for the shown expression. Create anew expression such as;

='Unique subscribers: ' & Count(Subscribers)

&chr(10)& 'Candidates: ' & Count(Candidates)

&chr(10)& 'Smart MA Decisions: ' & Count(Decisions)

&chr(10)& 'SMA by RT: ' & Count(SMA)

&chr(10)& 'Non Candidates: ' & Count(Non_Candidates)

and check the box "Text as Pop-up".

Uncheck the bar, symbol, etc, so it shows a popup icon (you may also leave it as is...it won't calculate and display a bar).

On the presentation tab uncheck "Popup Labels".

Then, your popup with appear like the following;

Unique subscribers: (value)

Candidates: ' (value)

Smart MA Decisions: (value)

SMA by RT: (value)

Non Candidates: (value)

You can then write the expression to show details in any order you wish. You can even embellish the information further.

--john

Not applicable
Author

Thanks!!