Overview
The ASP.NET MVC stacked column chart is a chart with x-values stacked on one another in series order. It shows the relationship among individual values to the total of the points.
Multi series
You can plot multiple series in a single chart to compare different data sets. Enabling legend and tooltip gives more information about the individual series.
Marker
Mark data points with built-in shapes: circles, rectangles, ellipses, vertical lines, horizontal lines, diamonds, triangles, pentagons, crosses, and pluses. In addition to these shapes, use images to make the points more attractive.
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 a given angle.
Multiple axes
Use multiple axes to plot different data sets that vary widely from each other.
Stacking group
Group a series with another series separately using a different group name.
Spacing and width
Customize spacing between two bars and the width of the bars.
Rounded corners
Modernize the UI by applying rounded corners to the stacked bar.
Cylindrical stacked columns
Modernize the UI by displaying value as cylindrical-shaped data points.
Customization
Customize the look and feel of the stacked column chart using built-in APIs.
ASP.NET MVC Stacked Column Chart Code Example
Easily get started with ASP.NET MVC Stacked Column using a few simple lines of C# code, as demonstrated below. Also explore our ASP.NET MVC Stacked Column Chart Example that shows you how to render and configure the stacked column chart component.
@Html.EJS().Chart("container").Series(series =>
{
series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.StackingColumn).XName("x").YName("y1").DataSource(ViewBag.dataSource).Add();
series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.StackingColumn).XName("x").YName("y2").DataSource(ViewBag.dataSource).Add();
}).PrimaryXAxis(px => px.ValueType(Syncfusion.EJ2.Charts.ValueType.Category)).Render();public class HomeController : Controller
{
public ActionResult Index()
{
List<ChartData> chartData = new List<ChartData>
{
new ChartData{ x=2000, y1= 0.03, y2= 0.48},
new ChartData{ x=2001, y1= 0.05, y2= 0.53 },
new ChartData{ x=2002, y1= 0.06, y2= 0.57 },
new ChartData{ x=2003, y1= 0.09, y2= 0.61 },
new ChartData{ x=2004, y1= 0.14, y2= 0.63 },
new ChartData{ x=2005, y1= 0.20, y2= 0.64 },
new ChartData{ x=2006, y1= 0.29, y2= 0.66 },
new ChartData{ x=2007, y1= 0.46, y2= 0.76 },
new ChartData{ x=2008, y1= 0.64, y2= 0.77 },
new ChartData{ x=2009, y1= 0.75, y2= 0.55 }
};
ViewBag.dataSource = chartData;
return View();
}
}
public class ChartData
{
public double x;
public double y1;
public double y2;
}Learning Resources

Stacked Column Chart User Guide
Learn the available options to customize ASP.NET MVC stacked column chart.
