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

Side-by-Side Bar Chart

I need to create a bar chart that displays different counts side-by-side, and the chart needs to be dynamic. Each count has it's own title / calculation.

'CountTitle1' => CountFunction1

'CountTitle2' => CountFunction2

...

How can I show these side-by-side in a Qlick Sense bar chart?

Thanks

12 Replies
Not applicable
Author

The 'dimension' is the set of titles on each count, but I am not sure how to do this on the Qlik side to keep things dynamic.

Gysbert_Wassenaar

Qlik Sense doesn't allow for bar charts without dimensions yet. So you can create a dummy dimension and then hide the axis labels and use three measures. You'll see the names of the measures in the legend which you could put on top. But if you must have labels under the bars then you'll need to use one synthetic dimension =valuelist('Active','Locked', 'New') and one measure pick(match(valuelist('Active','Locked', 'New'),'Active','Locked', 'New'), sum(IsActive), sum(IsLocked), sum(IsNew))


talk is cheap, supply exceeds demand
Not applicable
Author

I had it showing with the legend as described in your first method, but it did not look right with the missing labels. I just tried with your second method of using a synthetic dimension and that seems to be a valid workaround.

Thanks!