ASP.NET MVC spline area chart is much like area chart except that the data points are connected through a smooth line. Supports feature like zooming, panning, animation, and dynamic updates.
Multi area series are useful to compare two or more cumulative values over a period.
Marks 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 point more attractive.
Shows the information about the data point with data label. Add a template to display data labels with any HTML element such as images, DIV, and spans to make data more informative.
Use multiple axes to plot different data sets that widely vary from one other.
Enable zooming and panning support when dealing with large amount of data to visualize the data point in any region.
Handle the missed data elegantly with empty points support.
The spline area chart can be transposed vertically to view the data in a different perspective.
Customize the color and border of the spline area chart using built-in APIs.
Easily get started with ASP.NET MVC Spline Area using a few simple lines of C# code, as demonstrated below. Also explore our ASP.NET MVC Spline Area Chart Example that shows you how to render and configure the spline area chart component.
@Html.EJS().Chart("container").Series(series =>
{
series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.SplineArea).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 spline area chart.
Spline Area Chart API Reference
Explore the ASP.NET MVC spline area chart APIs.