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 Range Column Chart is used to show variation in the data values for a given time. These charts support UI customization.


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.


Spacing and width

The ASP.NET MVC Range Column Chart provides an option to customize the spacing between two columns and the width of the column.


Empty/null data point

Handle missing data elegantly with empty points support.


Vertical chart

The ASP.NET MVC Range Column chart can be transposed vertically to view the data from a different perspective.


Customization

Customize the color and border of the ASP.NET MVC Range Column Chart using built-in APIs.


ASP.NET MVC Range Column Chart Code Example

Easily get started with ASP.NET MVC Range Column using a few simple lines of C# code, as demonstrated below. Also explore our ASP.NET MVC Range Column Chart Example that shows you how to render and configure the range column chart component.

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;
}
@Html.EJS().Chart("container").Series(series =>
{  series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.RangeColumn).XName("x").High("y1")
    .Low("y2").DataSource(ViewBag.dataSource).Add();
}).PrimaryXAxis(px => px.ValueType(Syncfusion.EJ2.Charts.ValueType.Category)).Render();

Learning Resources

UG

Range Column Chart User Guide

Learn the available options to customize ASP.NET MVC Range Column chart.

API

Range Column Chart API Reference

Explore the ASP.NET MVC Range Column 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