Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Is it possible to show only the values on data point when zoomed in as they will be overlapping in case of multiple bars in a small chart window.
Regards,
Rishi
Hi,
In your chart, first unchek the 'Values on Data Points' option. (Right Click on the Chart, Properties / "Expressions" Tab).
Then, in the "Expressions" Tab, click on the "+" symbol near the expressions you want to hide labels.
All you need to do is to define a expression of the "Show Value" attribute expression.
When the value of this expression is equal to Zero, no value labels are displayed on the chart, in other cases, values are displayed.
For example if you enter the following expressions :
=(GetSelectedCount([Date])<5)
You will only display value when less than 4 dates are selected
Hope it helps
Best regards
Hi,
In your chart, first unchek the 'Values on Data Points' option. (Right Click on the Chart, Properties / "Expressions" Tab).
Then, in the "Expressions" Tab, click on the "+" symbol near the expressions you want to hide labels.
All you need to do is to define a expression of the "Show Value" attribute expression.
When the value of this expression is equal to Zero, no value labels are displayed on the chart, in other cases, values are displayed.
For example if you enter the following expressions :
=(GetSelectedCount([Date])<5)
You will only display value when less than 4 dates are selected
Hope it helps
Best regards
Hi Bertrand,
This works great!
Regards,
Rishi