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: 
peterderrington
Creator II
Creator II

Create a tiered bar chart

I was wondering if anyone could help.

In the style tab of the chart properties box i was wanting to use the final option in the lefthand column of the 'Look' section:

peterderrington_0-1655305354124.png

I've got three expressions and one dimension and would like the layout that's shown in the icon rather than what shows in the 'Preview' box. eg, i'd like the blue bars at the back and then the red in front with the green ones right at the front.

 

Is it possible?

Labels (1)
5 Replies
marcus_sommer

I think your used combination of dimensions and expressions didn't fit to this kind of chart-style. You may create a dummy-app with a few inline-records to play a bit with various dimensions-expression-combinations to create such style. After that you know how you would need to adjust your final chart and then deciding if you could change it appropriate respectively if it would be worth the needed efforts ...

- Marcus

MarcoWedel

You can convert your three expressions into one expression and an additional (second) synthetic dimension using something like this:

 

second dimension:

=ValueList('NameOfYourExpression1','NameOfYourExpression2','NameOfYourExpression3')

 

combined single expression:

=Pick(Match(ValueList('NameOfYourExpression1', 'NameOfYourExpression2', 'NameOfYourExpression3'),   'NameOfYourExpression1', 'NameOfYourExpression2', 'NameOfYourExpression3'),
             <replace with your expression 1>,
             <replace with your expression 2>,
             <replace with your expression 3>

            )

 

see also:

https://help.qlik.com/en-US/qlikview/May2021/Subsystems/Client/Content/QV_QlikView/ChartFunctions/Sy...

https://help.qlik.com/en-US/qlikview/May2022/Subsystems/Client/Content/QV_QlikView/ChartFunctions/Sy...
 
https://community.qlik.com/t5/QlikView-App-Dev/3d-bar-graphs/td-p/412745 
(just picking one random community example)


hope this helps

Marco

 

peterderrington
Creator II
Creator II
Author

Thank you and huge apologies for the delay in coming back to you.

That has almost solved it. Although as you can see from the image theres clearly something i need to adjust:

peterderrington_0-1655890805053.png

What haven't i done?

 

Thanks, 

Peter

marcus_sommer

It looked as if there is any TOTAL and/or any aggr() dimensionality within your expression not granular enough.

If you have applied the suggestion from Marco with the valuelist() you couldn't use this synthetic dimension within the aggr() or TOTAL. In this case you may move the logic into the script and creating the values with an inline-load as an island-table.

- Marcus

peterderrington
Creator II
Creator II
Author

ok.....

(sorry, totally confused now lol)

So in my Dimensions I have 'Org' which would give the difference between the business units and then '=ValueList('Pocket QI','Leading for Improvement','Total')' which is based on the earlier responce.

 

My expressions are:

 

peterderrington_0-1656331320206.png