Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Can I hardcode the bar graph visualization?

Hello All,

I want to hardcode the bars in the bar graph visualization, Is there any possible way to do it.

I want to hardcode it on measure expression side.

1 Reply
sunny_talwar

You can, using ValueList() or ValueLoop() functions as dimension and Pick(match()) or If statement in your expression. Example

Dimension

ValueList('High', 'Low')

Expression

Pick(Match(ValueList('High', 'Low')), 'High', 'Low'), 100, 50)