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

Text on Axis

Hi all,

I have a bar chart I wants to add one expression as Text on axis please suggest any one how can  I achieve this in Qlik Sense .

Thanks,

Vikas

1 Solution

Accepted Solutions
JonnyPoole
Employee
Employee

I think that is possible.  Below i replaced my dimension with an expression:  I added a measure of count(customer) to the dimension label . Just make sure to wrap it in an aggr() using your original dimension as the 2nd argument for the function. 

aggr([countries_world.Name] & '   ' & count(Customer),[countries_world.Name])

Capture.PNG

View solution in original post

2 Replies
JonnyPoole
Employee
Employee

I think that is possible.  Below i replaced my dimension with an expression:  I added a measure of count(customer) to the dimension label . Just make sure to wrap it in an aggr() using your original dimension as the 2nd argument for the function. 

aggr([countries_world.Name] & '   ' & count(Customer),[countries_world.Name])

Capture.PNG

vikasgupta
Creator
Creator
Author

Thanks,  Jonathan.