ASP.NET Core 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, and pentagons. In addition to these shapes, use images to make the point 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.
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.
<ejs-chart id="container">
<e-chart-primaryxaxis valueType="Category">
</e-chart-primaryxaxis>
<e-series-collection>
<e-series name="series1" xName="xValue" yName="yValue" dataSource="ViewBag.dataSource"
type="@Syncfusion.EJ2.Charts.ChartSeriesType.SplineArea">
</e-series>
</e-series-collection>
</ejs-chart>
public class HomeController : Controller
{
public ActionResult Index()
{
List<ChartData> chartData = new List<ChartData>
{
new ChartData { xValue = "2014", yValue = 21 },
new ChartData { xValue = "2015", yValue = 24 },
new ChartData { xValue = "2016", yValue = 36 },
new ChartData { xValue = "2017", yValue = 38 },
new ChartData { xValue = "2018", yValue = 54 },
new ChartData { xValue = "2019", yValue = 57 },
new ChartData { xValue = "2020", yValue = 70 },
};
ViewBag.dataSource = chartData;
return View();
}
}
public class ChartData
{
public string xValue;
public double yValue;
}
Learn the available options to customize ASP.NET Core spline area chart.