Hi
I would need to format the values on the ordinate axis in this way:
###, ###. 00
I've tried both with the LabelFormat property:
PrimaryYAxis(py => py.LabelFormat("###, ###.00").RangePadding(Syncfusion.EJ2.Charts.ChartRangePadding.None).
MajorTickLines(ViewBag.majorTickLines).MinorTickLines(ViewBag.minorTickLines).LineStyle(ViewBag.lineStyle).Minimum(ViewBag.Min).Maximum(ViewBag.Max)
both with the Skeleton property
PrimaryYAxis(py => py.Skeleton("###, ###.00").RangePadding(Syncfusion.EJ2.Charts.ChartRangePadding.None).
MajorTickLines(ViewBag.majorTickLines).MinorTickLines(ViewBag.minorTickLines).LineStyle(ViewBag.lineStyle).Minimum(ViewBag.Min).Maximum(ViewBag.Max)
but in both cases I could not get the formatting
Can you help me?
Thanks in advance
Barbara Inzitari