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

The ASP.NET MVC Histogram chart is a bar (column) chart used for frequency distribution where the widths of bars are proportional to classes into which variables have been divided and the heights of the bars are proportional to class frequencies.


Distribution curve

Provides a graphical representation of the normal distribution of data.


Marker

Mark data points with built-in shapes such as 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 its given angle.


Vertical chart

The ASP.NET MVC Histogram Chart can be transposed vertically to view the data in a different perspective.


Customization

Customizes the color and border of the histogram chart using built-in APIs to make it visually unique.


ASP.NET MVC Histogram Chart Code Example

Easily get started with ASP.NET MVC Histogram Chart by using a few lines of HTML and TS code, as demonstrated below. Also explore our ASP.NET MVC Histogram Chart Example that shows how to render and configure the chart.

@Html.EJS().Chart("container").Series(series =>
{
   series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.Histogram).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;            
      }

Learning Resources

UG

Histogram Chart User Guide

Learn the available options to customize ASP.NET MVC Histogram chart.

API

Histogram Chart API Reference

Explore the ASP.NET MVC Histogram Chart APIs.


85+ ASP.NET MVC 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