I have a radchart component in a blazor application.
< RadzenChart class="h-100 category-vertical">
< RadzenColumnSeries Data="@_MyData" CategoryProperty="Category" ValueProperty="Value"
Fill="var(--rz-secondary)" Title="Grafico1" />
< RadzenLegend Visible="false" />
< RadzenValueAxis Formatter="UiHelper.FormatterValue">
< RadzenGridLines Visible="true" />
</ RadzenValueAxis>
</ RadzenChart>
I would like to be able to manage the step value in the x axis so that if I select a very large date range I only see the labels for the days while if the range is very small I see the labels for the hours.