We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback


Overview

ASP.NET Core Donut Chart is like a Pie Chart, except for the space at the center. It is useful for when you want to compare the contribution of each data with the total.


Custom inner radius

You can customize the inner radius of the chart to make it pleasing. Making inner radius to 0 will change the doughnut to pie chart. You can customize both the radius and inner radius of the doughnut.


Doughnut Legend

Legends are used to show the information about each point to know about its contribution towards the total sum. You can collapse the point using legend click.


Start and End Angle

Customize the start and end angle of the chart to achieve the semi-pie.


Data Label

Data labels display information about data points. Add a template to display data labels with HTML elements such as images, DIV, and spans for more informative data labels. You can rotate a data label by its given angle.


Smart labels

Arranges data labels smartly to avoid overlapping when the data point values fall in close range.


Grouped points

Group the points in pie chart based on some condition. The grouped slices can be split into individual points by clicking the slice.


Drilldown Operation

Focus-in on the data within the data using drilldown operation.


Different radius

Customize the radius of individual slice using built-in APIs.


Donut Center

Move the center of the donut relative to the plot area.


Center label

Place a label at the center of the donut chart. Also, when the mouse pointer hovers over a donut slice, the relevant data is displayed at the center of the donut chart.


Customization

Customize the look and feel of the doughnut using built-in APIs.


ASP.NET Core Donut Chart Code Example

Easily get started with ASP.NET Core Donut Chart using a few simple lines of C# code example as demonstrated below. Also explore our ASP.NET Core Donut Chart Example that shows you how to render and configure the chart.

<ejs-accumulationchart id="container">                
                <e-accumulation-series-collection>
                    <e-accumulation-series  innerRadius="70%" dataSource="ViewBag.dataSource" xName="xValue" yName="yValue">
                    </e-accumulation-series>
                </e-accumulation-series-collection>
</ejs-accumulationchart>
public class HomeController : Controller
{
 public ActionResult Index()
        {  
           List<PieChartData> chartData = new List<PieChartData>
            {

                new PieChartData { xValue = "Chrome", yValue = 37 },
                new PieChartData { xValue = "UC Browser", yValue = 17 },
                new PieChartData { xValue = "iPhone", yValue = 19 },
                new PieChartData { xValue = "Others", yValue = 4  },
                new PieChartData { xValue = "Opera", yValue = 11 },
                new PieChartData { xValue = "Android", yValue = 12 },
            };
            ViewBag.dataSource = chartData;
            return View();
        }
}
public class PieChartData
        {
            public string xValue;
            public double yValue;
        }

Learning Resources

UG

Doughnut Chart User Guide

Learn the available options to customize the ASP.NET Core doughnut chart.

API

Doughnut Chart API Reference

Explore the ASP.NET Core doughnut chart APIs.


85+ ASP.NET CORE UI CONTROLS

Scroll up icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile
Live Chat Icon