Hi Dom Blount,
Greetings from Syncfusion.
We have analyzed your query and we would like to inform that the reported problem has been solved by using RangePaddingType to be None. By default, RangePaddingType becomes Calculate which is round up the axis range with nice auto interval calculation. Hence, the axis labels are shown with the rounded value. And use of Rounding places property value used to showing decimal points.
Please refer the below code example
|
chartControl1.PrimaryYAxis.RangePaddingType = ChartAxisRangePaddingType.None;
chartControl1.PrimaryYAxis.RoundingPlaces = 8;
|
Output:
Regards,
Yuvaraj.