The ASP.NET MVC bar chart is the most common chart type used to compare different categories of data like frequency, count, total, or average displayed in horizontal bars. 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 values clearly.
Customize the spacing between two bars and the widths of the bars.
Modernize the UI by applying rounded corners to the bar chart.
The Grouped Bar feature allows you to 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 bar chart using built-in APIs.
Easily get started with ASP.NET MVC bar chart using a few simple lines of C# code, as demonstrated below. Also explore our ASP.NET MVC bar chart example that shows you how to render and configure the charts.
@Html.EJS().Chart("container").Series(series =>
{
series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.Bar).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 bar charts.
Explore the ASP.NET MVC bar chart APIs.