I have a total of 6 pie chart slices
When I set my OthersCategoryPercent = 3, My Pie Chart Control is showing 3 pie Chart slices (including Others),
When I hover mouse over some of the slices (for Instance "Others") DataItemOver event is fired and its e.DataRow gives me Index = 5 which is legitamate when OthersCategoryPercent = 0, however this slice is not even visible ( it is within Others)
Any way to fix that?
{
e.Primitive != null &&
e.Primitive.Tags.ContainsKey("OthersList");
}
else
sorry, i posted this thinking you were using a 2D pie chart. this is a hack and i don't think it will work in PieChart3D. try just evaluating
e.ColumnLabel == this.UltraChart1.PieChart3D.OthersCategoryText
instead of that stuff with the Primitive's Tags property.