Hello,
I’m using PieChart but my labels are overlapping like in the picture attached.
Can you help me find a way to separate them?
Thanks
Hi Parganin,
Thanks for posting.
I have observed your requirements and like to mention that you can use the chart series label property of showing leader lines and setting label position to BestFit to avoid overlapping of chart series. Can you please try adding following sample code in your application.
series.Labels.DefaultDataLabelFormat.ShowLeaderLines = true;series.Labels.DefaultDataLabelFormat.Position = LegendDataLabelPosition.BestFit;
Best Regards,
Hi,
Thank you for you answer!
I had the BestFit option but not the showLeaderLines. It’s way better now.
Best Regards,