When Radzen Blazor Chart with line series is bigger the categoryproperty repeats

When Radzen Blazor Chart with line series is bigger the categoryproperty repeats, for example if I have 5 dates the first one appears 4 times, the second one appears 3 times and is the same with the others, but when I set a smaller width it doesn´t happend.

RadzenChart grafico;
<RadzenChart @ref="grafico" Style="width:30%;">









Hi @erandi,

This probably happens because of date interpolation. I suggest using strings for the category instead of DateTime instances.

1 Like

Thank you so much. It worked.