Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
cliff_clayman
Creator II
Creator II

Custom pop-up label in Pie Chart

I would like to create a custom pop-up label for one expression value in a pie chart. The example below is what I am trying to create:

"There are " & Expression1 " cards that generate a yearly cost of " & (Expression1 * 12), $#,##0

How can I do this?

1 Reply
Not applicable

Hey Cliff,

There is a work around to achieve this. Attaching a sample qvw for you.

Steps to reproduce my solution:

1. Create initial expression: Expr1

2. Turn off Values on data points & text as pop up for Expr1

3. In Presentation tab turn off Pop-up labels

4. Add new Expression Expr2, with your custom pop up definition:

='There are ' & Num(Expr1,'# ##0') & ' cards that generate a yearly cost of ' & Num(Expr1 * 12,'# ##0')

5. Make sure "Text as Pop-up is turned on.

Result:

Screen Shot 08-26-16 at 09.23 PM.PNG

BR,

Kuba