Hi,
In a graph, Im trying to display one measure value (Order Quantity) across all the Categories for a particular month.
So, I have specified the MAX value for the chart to be MAX(Order Quantity).
I need to have specific intervals based on the MAX value of the order Quantity. So, I gave an expression, similar to the below:
case when maxvalue <= 6 then 1
when maxvalue > 6 and <= 12 then 2
when maxvalue > 12 and <= 30 then 5
when maxvalue > 30 and <= 60 then 10
when maxvalue > 60 and <= 100 then 20
So, the interval works perfectly fine based on the maxvalue. But, the problem Im facing is, if the maxvalue is say 13, then I have intervals like 0, 5, 10.
But, 13 isn't getting displayed, rather the tickmark stops at 10. However the chart value is plotted rightly at 13.
How do I get the max tickmark to be displayed even if it is not same as the interval value? Any clue on this, is greatly helpful. Thanks!