This question is locked. New answers and comments are not allowed.
I need to position my datapoints outside of the pie.
1 - far out from the pie area with an arrow pointing to the pie slice.
2- on the legend Label
DataSeries capacitySeries = this.FillRadChartWithCapacityData((SomeObject)InnerCapcityLayout.DataContext);
capacitySeries.Definition = new PieSeriesDefinition();
capacitySeries.Definition.LegendDisplayMode = LegendDisplayMode.DataPointLabel;
((PieSeriesDefinition)capacitySeries.Definition).LabelOffset = 1d;
capacitySeries.Definition.DefaultLabelFormat = "#%{p1}";
I am looking for something like capacitySeries.Definition. Position it outside
Thanx for your help!