Overview
ASP.NET MVC column chart is the most common chart type used to compare frequency, count, total, or average of data in different categories. It is ideal for showing variations in the value of an item over time.
Multiple series
Plot multiple series in a single chart to compare different data sets. Enabling the legend and tooltip gives readers more information about the individual series.
Markers
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 labels
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.
Multiple axes
Use multiple axes to plot different data sets that widely vary from one other.
Back-to-back column chart
Plot data bi-directionally to compare and analyze the value clearly.
Spacing and width
Customize the spacing between two bars and the widths of the bars.
Rounded corners
Modernize the UI by applying rounded corners to the column chart.
Grouped column
Group a series with another series by giving the group a different name.
Cylindrical columns
Modernize the UI by displaying value as cylindrical-shaped data points.
Customization
Customize the look and feel of the column chart using built-in APIs.
ASP.NET MVC column chart code example
Easily get started with ASP.NET MVC column charts using a few simple lines of C# code, as demonstrated below. Also explore our ASP.NET MVC column chart example that shows you how to render and configure the charts.
@Html.EJS().Chart("container").Series(series =>
{
series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.Column).XName("x").YName("y").
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= "South Korea", y= 39.4 },
new ChartData { x= "India", y= 61.3 },
new ChartData { x= "Pakistan", y= 20.4 },
new ChartData { x= "Germany", y= 65.1 },
new ChartData { x= "Australia", y= 15.8 },
new ChartData { x= "Italy", y= 29.2 },
new ChartData { x= "United Kingdom", y= 44.6 },
};
ViewBag.dataSource = chartData;
return View();
}
}
public class ChartData
{
public string x;
public double y;
}
