Hello,
I have added a pie-chart to my report. For each "pie-slice", I have added a label that appears just outside the slice.
I am facing problem for "connecting-line" from the pie-slice to its label. The connecting-line overlaps the labels?
I have used following code snippet to place the labels and connecting-line properly in Pie-chart.
chart.AutoLayout = true;
chart.IntelligentLabelsEnabled = true;
chartSeries3.Appearance.ShowLabels = true;
chartSeries3.Appearance.ShowLabelConnectors = true;
chartSeries3.Appearance.LabelAppearance.Visible = true;
chartSeries3.Appearance.LabelAppearance.Distance = 10;
chartSeries3.Appearance.StartAngle = 30;
chartSeries3.Appearance.ShowLabelConnectors = true;
But Still i am facing the issue of connect line overlapping labels.