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

Labelling Issue

Hi,

Using a Combo chart to display Bar and a circle symbol:

I'm try to control the way label is being displayed here, I just want to show the Year dimension Once, instead of two time when I hover over the Circle in the Bar.

label_issue.jpg

Any ideas please???. Thanks for your help.

1 Solution

Accepted Solutions
ychaitanya
Creator III
Creator III

I would recommend to use the following

1.  Presentation - > Uncheck Popup Labels

2. uncheck Text as Popup for the expression added

3. Create an additional expression now .. and check the Text as Popup option in Expression tab

4. in the expression definition write as below :

= ' Year = ' & Year & chr(10) &' Budget = ' & sum(budget) & char(10) & 'Actual = ' & sum(actual)

This is something like building the custom popup and custom labels for popup.

I have got this scenario before and got it working with this approach.

Hope this Helps.

Thanks

CY

View solution in original post

4 Replies
Anil_Babu_Samineni

I think, We need Dual() function. CAn i get your sample application?

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
ychaitanya
Creator III
Creator III

I would recommend to use the following

1.  Presentation - > Uncheck Popup Labels

2. uncheck Text as Popup for the expression added

3. Create an additional expression now .. and check the Text as Popup option in Expression tab

4. in the expression definition write as below :

= ' Year = ' & Year & chr(10) &' Budget = ' & sum(budget) & char(10) & 'Actual = ' & sum(actual)

This is something like building the custom popup and custom labels for popup.

I have got this scenario before and got it working with this approach.

Hope this Helps.

Thanks

CY

jaumecf23
Creator III
Creator III

In Expression sheet of the object propiertes you can force to disable "Text  as Pop-up" of each expression. Then no automatic information will be shown. Finally you can create your own expression with the message that you want to face. This Expression must has selected the following options :

Captura.PNG

rxp03570
Creator
Creator
Author

Works Perfectly, Thanks CY.