RadzenChart:RadzenPieSeries do not display anything in certain scenarios

Hello All!

In v. 11.1 the RadzenPieSeries and RadzenDonutSeries do not draw any slices for the chart in cases when we have a very large imbalance in the source data. To reproduce the issue just go to the Pie Chart Playground and change the initial data like the follow:

    DataItem[] revenue = new DataItem[]
    {
        new DataItem { Category = "Cloud", Value = 4200 },
        new DataItem { Category = "Licenses", Value = 2 },
        new DataItem { Category = "Services", Value = 2 },
        new DataItem { Category = "Support", Value = 2 },
        new DataItem { Category = "Training", Value = 2 },
    };

and then run this example. You will see the chart containing no slices.

The same issue is reproduced for the RadzenDonutSeries series.

The expected result: the chart should show one big slice with or without a slight gap.

Thanks in advance!

Thanks! I was able to reproduce and fix the problem - the fix will be part of our next update later today.