How to Display Numeric Axis Labels in Blazor Charts?
This article explains how to display numeric axis labels in integer after zooming in Blazor Charts.
Displaying axis labels in integer after zooming
Blazor Charts provides an option to display the numeric axis labels only in integer after performing zooming in chart using OnAxisActualRangeCalculated event.
This can be achieved by rounding the Interval value of numeric axis on OnAxisActualRangeCalculated event by checking the argument axis name is equal to PrimaryYAxis. This will render intervals in integer even after zooming the chart.
The below code example demonstrates how to display numeric axis labels in integer.
Index.razor
@using Syncfusion.Blazor.Charts
<SfChart>
<ChartEvents OnAxisActualRangeCalculated="RangeCalculated"></ChartEvents>
<ChartPrimaryXAxis ValueType="Syncfusion.Blazor.Charts.ValueType.Category"></ChartPrimaryXAxis>
<ChartSeriesCollection>
<ChartSeries DataSource="@Sales" XName="Month" YName="SalesValue" Type="Syncfusion.Blazor.Charts.ChartSeriesType.Column">
</ChartSeries>
</ChartSeriesCollection>
<ChartZoomSettings EnableSelectionZooming="true"></ChartZoomSettings>
</SfChart>
@code {
public void RangeCalculated(AxisRangeCalculatedEventArgs Args)
{
if (Args.AxisName == "PrimaryYAxis")
{
Args.Interval = Math.Round(Args.Interval);
}
}
public class SalesInfo
{
public string Month { get; set;}
public double SalesValue { get; set;}
}
public List<SalesInfo> Sales = new List<SalesInfo>
{
new SalesInfo { Month = "Jan", SalesValue = 35 },
new SalesInfo { Month = "Feb", SalesValue = 28 },
new SalesInfo { Month = "Mar", SalesValue = 34 },
new SalesInfo { Month = "Apr", SalesValue = 32 },
new SalesInfo { Month = "May", SalesValue = 40 },
new SalesInfo { Month = "Jun", SalesValue = 32 },
new SalesInfo { Month = "Jul", SalesValue = 35 }
};
}
Output
Live Sample for Displaying Integer
Conclusion
I hope you enjoyed learning how to display axis labels in integer after zooming in Blazor Chart Component.
You can refer to our Blazor Chart feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our Blazor Chart example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, support portal, or feedback portal. We are always happy to assist you!