How do you format the labels on a composite Pie Chart?
This doesn't work...
Chart.PieChart.Labels.FormatString = "<ITEM_LABEL>: (<PERCENT_VALUE:#>%)"
Hi Ryork,
Maybe be will be interesting for you to take a look at other possible approach ( by using FillSceneGraph event). Please take a loo at the attached video file and sample for more details.
Regards
I got it... You have to cast the Layer.ChartTypeAppearance to PieChartAppearance, then you get access to the labels property.
Dim myLayer As New ChartLayerAppearance()
myLayer.ChartType = ChartType.PieChart