The ASP.NET MVC Scatter chart is used to plot data with two numeric parameters. Also referred to as a scatter plot or point chart, its rich feature set includes tooltip, multiple axes, zooming, and panning.
Plot multiple scatter series in a single chart to compare different data sets. A legend and tooltip for the series can make it more readable.
Use different types of symbols to display the data points in a scatter plot. This will be useful in differentiating multiple series and points in the same chart.
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.
Customize the look and feel of the scatter chart using built-in APIs.
Easily get started with ASP.NET MVC Scatter using a few simple lines of C# code, as demonstrated below. Also explore our ASP.NET MVC Scatter Chart Example that shows you how to render and configure the scatter chart component.
@Html.EJS().Chart("container").Series(series =>
{
series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.Scatter).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 scatter chart.
Explore the ASP.NET MVC scatter chart APIs.