How to show number in Blazor Chart Y Axis

Answer:


We can show numbers in Chart Y Axis by using “Interval”, “maximum” and “minimum” property in Axis of chart. Here is the code snippet for your reference

<ChartPrimaryYAxis Minimum="0" Maximum="110" Interval="10" Title="Charge (%)">

ChartPrimaryYAxis>


Find the sample for show number in Chart Y Axis from here

Loader.
Up arrow icon