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.
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.
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 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.
Use multiple axes to plot different data sets that widely vary from one other.
Plot data bi-directionally to compare and analyze the value clearly.
Customize the spacing between two bars and the widths of the bars.
Modernize the UI by applying rounded corners to the column chart.
Group a series with another series by giving the group a different name.
Modernize the UI by displaying value as cylindrical-shaped data points.
Customize the look and feel of the column chart using built-in APIs.
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;
}
Learn the available options to customize ASP.NET MVC column charts.
Explore the ASP.NET MVC column chart APIs.