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
700
Doughnut Chart - Labels
posted
I need to display the label for Doughnut chart as in the below image. Any help ??
Parents
  • 17605
    Verified Answer
    posted

    this.ultraChart1.DoughnutChart.BreakAllSlices = true;           

     

    this.ultraChart1.DoughnutChart.Labels.Visible = false;

    this.ultraChart1.DoughnutChart.Labels.LeaderLinesVisible = false;

               

    ChartTextAppearance textApp = new ChartTextAppearance();

    textApp.Row = -2;

    textApp.Column = -2;

    textApp.Visible = true;

    textApp.ItemFormatString = "<PERCENT_VALUE:#>%";

    this.ultraChart1.DoughnutChart.ChartText.Add(textApp);

Reply Children
No Data