Hallo!
I have got a pie chart.
Is it possible to show the description of the pie part next to each pie part instead to show the legend. As far as I can see, I can only show the value of percentage.
I hope, you understand, what I mean.
Thanks
Marco
Hello Marco,
You might be able to achieve what you are looking for by creating new ChartTextAppearance, and add it to the ChartText like:
ChartTextAppearance textApp = new ChartTextAppearance(); textApp.Column = -2; textApp.Row = -2; textApp.Visible = true; textApp.ItemFormatString = "<ITEM_LABEL>";
ultraChart1.PieChart.ChartText.Add(textApp);
This will show the description of each pie part.
Please let me know if that is not what you are looking for.