Radchart x axis step

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.

Hi @software,

Such a feature is not supported out of the box. We recommend providing the expected data instead - use a string for the category property and format it the way you want depending on the range.