When all the values ββfor N
categories shown in a pie chart are zero, the chart is a circle with N
equal sectors.
I tried using DataFilter
as below, but then, nothing is shown at all (no chart, no legend information)
DataFilter dataFilter1 = new DataFilter("Amount", "System.Int32",
DataFilterCondition.GreaterThan, 0);
series.DataFilters.Add(dataFilter1);
Is there a way to show an empty (filled with white for example?) chart in such conditions?