Is there a way to change the labelmode based on the data?
Something along the lines of
if (pieSeries.Values[i] > .1){
//I want to change the labelMode of this value to Center on the pie chart
pieSeries.LabelMode = PieLabelMode.Center;
}else {
//I want to change the labelMode of this value to SpiderNoOverlap on the pie chart
pieSeries.LabelMode = PieLabelMode.SpiderNoOverlap;
}
Also how can I adjust the lengths of the lines for SpiderNoOverlap. I tried the following without success.
pieSeries.DataLabelStyle.ArrowLength = new NLength(1.0f,NRelativeUnit.ParentPercentage);
pieSeries.DataLabelStyle.ArrowPointerLength = new NLength(1.0f,NRelativeUnit.ParentPercentage);