Decimal point on the line graph

WhenI tap on the % line graph set to display to the first decimal place in data, it may be displayed to the 15th decimal place. Only one is displayed to 15th decimal place, the others are displayed to 1st decimal place. I attach the picture of the graph which shows 15th decimal point and 1st decimal point. Could you let me know how I can control all the display to the first decimal point?

decimal point.png 2.png

Solved Solved
0 2 138
1 ACCEPTED SOLUTION

This is how your value is stored in the data source. You can either change it in the data source to account for one decimal digit, or add a virtual column (to be displayed in the graph), with the following app formula:

ROUND(10 * [column]) / 10.0

View solution in original post

2 REPLIES 2

This is how your value is stored in the data source. You can either change it in the data source to account for one decimal digit, or add a virtual column (to be displayed in the graph), with the following app formula:

ROUND(10 * [column]) / 10.0

Thank you for your help!

Top Labels in this Space