RadzenChart scale with all values 0

I have generated many RadzenChart object successfully where the dataset is rows with a date column (ShipDate) as the horizontal axis and an int column (Quantity) as the vertical axis. However, when the dataset used with the chart has all values of 0 for the Quantity, I get an error. Here is what is shown in the Developer Tools Console.

Unhandled exception rendering component: Function does not accept floating point Not-a-Number values.
System.ArithmeticException: Function does not accept floating point Not-a-Number values.
at System.Math.Sign(Double value)
at Radzen.Blazor.ScaleBase.NiceNumber(Double range, Boolean round)
at Radzen.Blazor.LinearScale.Ticks(Int32 distance)
at Radzen.Blazor.Rendering.AxisMeasurer.YAxis(ScaleBase scale, AxisBase axis, RadzenAxisTitle title)
at Radzen.Blazor.RadzenValueAxis.Measure(RadzenChart chart)
at Radzen.Blazor.RadzenChart.UpdateScales()
at Radzen.Blazor.RadzenChart.Refresh(Boolean force)
at Radzen.Blazor.RadzenChart.Resize(Double width, Double height)
at Radzen.Blazor.RadzenChart.OnAfterRenderAsync(Boolean firstRender)
at Microsoft.AspNetCore.Components.RenderTree.Renderer.GetErrorHandledTask(Task taskToHandle, ComponentState owningComponentState)

There are times when all the Quantity value SHOULD be zero. How can I get around this?
Thanks

Can you reproduce this problem here? I tested the following which seems to work fine:

<div class="rz-p-0 rz-p-md-12">
    <RadzenChart>
        <RadzenLineSeries Data="@revenue1" CategoryProperty="Quarter" ValueProperty="Revenue" />
    </RadzenChart>
</div>

@code {
  class DataItem
  {
      public string Quarter { get; set; }
      public double Revenue { get; set; }
  }

  DataItem[] revenue1 = new DataItem[]
  {
      new DataItem { Quarter = "Q1", Revenue = 0 },
      new DataItem { Quarter = "Q2", Revenue = 0 },
      new DataItem { Quarter = "Q3", Revenue = 0 },
      new DataItem { Quarter = "Q4", Revenue = 0 }
  };
}

There have been similar issues in the past - make sure you are running an up-to-date version of Radzen.Blazor.