Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
470
Legend "Within" Chart
posted

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

 

  • 20872
    Suggested Answer
    Offline posted

    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.