Hi!
Is there a way to adjust the Y axis where when removing decimal places for small values it does not dupliacate the values. I'm using "
<ChartPrimaryYAxis LabelFormat="n0" />" to remove the decimal places. I do not want to use interval because for larger values it creates to many entries for the Y axis.
<SfChart @ref="ProgressChart" Height="500px" Title="In Progress Work Orders" Width="100%">
<ChartPrimaryXAxis ValueType="Syncfusion.Blazor.Charts.ValueType.Category" />
<ChartPrimaryYAxis LabelFormat="n0" />
<ChartEvents OnPointRender="PointRender"></ChartEvents>
<ChartTooltipSettings Enable="true"></ChartTooltipSettings>
<ChartSeriesCollection>
<ChartSeries DataSource="@BacklogChartData" XName="XValue" YName="YValue" Type="ChartSeriesType.Column" Fill="">
</ChartSeries>
</ChartSeriesCollection>
</SfChart>