Upgrading to 21.2.46 with .Net 60 -> Problems with UltraPieChart and other charts when binding to DataTable
First can't get the Legend to show up correctly, so I just removed it for now.
Has anything changed in the Charts and data binding that I should look as we move from UltraChart to UltraPieChart and the new charts.
Ok, the problem is definitely in UltraPieChart.
If the Datasource we are having problems is on a table that returns 2372 rows. Note this works in .Net 4.8 using UltraChart, but the resulting UltraPieChart is incorrect. The only solution I had was to sum the values and do the group by.in sql.and return only 23 rows for the chart.
I don't see an issue with .NET 6 specifically. In order to show every slice make sure you set OthersCategoryThreshold to 0. this.ultraPieChart1.OthersCategoryThreshold = 0;