Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
hjm35055
Partner - Contributor III
Partner - Contributor III

How do I get values with no data to display on the axis?

Hi,

I have the following chart.  How do I get the numbers to display where there are no values?

Screen Shot 2016-11-29 at 11.35.23 PM.png

Thank you!

6 Replies
dineshm030
Creator III
Creator III

Can you provide the sample QVW?

tresesco
MVP
MVP

Have you tried unchecking 'Suppress Zero-Values' in the presentation tab of the chart?

hjm35055
Partner - Contributor III
Partner - Contributor III
Author

yes, that is unchecked.

tresesco
MVP
MVP

Could you post a sample qvw?

Vegar
MVP
MVP

On the dimension property of your chart you could check the "Show all values" checkbox .

ChPs_Dim.png

jonathandienst
Partner - Champion III
Partner - Champion III

If the values do not exist, or are missing (due to incomplete associations in your model), then there is nothing to display. No fiddling with the graph options will help.For example, you will not get C or E in a chart of Sum(Val) from:

LOAD * INLINE

[

  Cat, Val

  A, 20

  B, 5

  D, 3

];

But if you combine that with a dimension load that includes the missing values:

LOAD * INLINE

[

  Cat

  A

  B

  C

  D

  E

];

LOAD * INLINE

[

  Cat, Val

  A, 20

  B, 5

  D, 3

];

Now you can display a table or chart of Sum(Val) that includes the formerly missing values. Just uncheck the Suppress Zero Values option.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein