Hi Saulo,
Greetings from Syncfusion, we have analyzed your query. To avoid the reported problem, we suggest you to place the labels at OutsideInColumn position and enable the OptimizePiePointPositions property of ChartSeries. When OptimizePiePointPositions property is enabled, pie slices will be placed at optimized positions.
Note: If OptimizePiePointPositions property is enabled, then rendering order of slices may change to place them at optimized position.
Please refer the following code snippet to achieve this
| [C#] //Optimize the position of slices series1.OptimizePiePointPositions = true; //Place the data labels of pie chart at OutsideInColumn position series1.ConfigItems.PieItem.LabelStyle = ChartAccumulationLabelStyle.OutsideInColumn; |
Please refer the below user documentation for more details about OptimizePiePointPositions and LabelStyle.
[Data label of pie chart]
Hope this helps.
Regards,
Muneesh Kumar G.