Hi,
using the WChart class in Syncfusion.DocIO.DLS library, it's not possible to have Y-axis labels rounded to 2 decimals.
Even if you set
_chart.PrimaryValueAxis.NumberFormat = "n2";
a small scale like:
0.05
0.10
0.15
becomes something like:
0.00
0.00
0.00
In other Syncfusion chart classes usually there is this property:
chartControl1.PrimaryYAxis.RoundingPlaces = 2;
where you can define the precision, but not in WChart class.
Is there another way to solve the problem?
thanks.