New to Telerik UI for ASP.NET MVC? Download free 30-day trial

ASP.NET MVC Donut Charts Donut Labels

Loading Demo...
  • EXAMPLE
  • VIEW SOURCE
donut_labels.cshtml
Donut_LabelsController.cs

Also available for:

CLIENT-SIDE API SERVER-SIDE API

Description

This example shows how to show/hide the labels of the Telerik UI for ASP.NET MVC Donut Chart and specify how they are aligned.

You can do that by getting a reference to the Chart client-object via:

var chart = $("#chart").data("kendoChart")

which will allow you to set and configure its series collection and attributes:

var pieSeries = chart.options.series[0];
pieSeries.labels.visible = true|false; // If set to true the chart will display the series labels.
pieSeries.labels.align = "circle"; // "circle" - the labels are positioned in circle around the chart."column" - the labels are positioned in columns to the left and right of the chart.

You can find a complete list of the series attributes in the control’s API documentation.

Additional Apps

This Donut Charts example is part of a unique collection of hundreds of ASP.NET MVC demos, with which you can see all Telerik ASP.NET MVC components and their features in action. View the source code of the demos from the library or directly adapt, and edit them and their theme appearance in the ThemeBuilder.

Support & Learning Resources

Additional Resources