Remove x Axis Values

Hello, I have a Dynamic Razen Chart wich updates very second, my problem is afer some time the X Values from the Axis are overlapping. I use the Min, Max and step Value for this, but is seems that it dont work on dynamic charts.

  <RadzenChart @ref="myChart">
        <RadzenLineSeries Data="viewmodell.MeasureItems" Title="Auslastung in %" CategoryProperty="Time" LineType="LineType.Solid" ValueProperty="Percentage">
        </RadzenLineSeries>
        <RadzenValueAxis Min="0" Max="100" Step="10">
            <RadzenAxisTitle Text="Percentage" />
        </RadzenValueAxis>
        <RadzenCategoryAxis Min="0" Max="100" Step="10">
            <RadzenAxisTitle Text="Time" />
        </RadzenCategoryAxis>
    </RadzenChart>
´´´