ASP.NET MVC Polar Chart visualizes data in terms of values and angles. It provides options for visual comparison between several quantitative or qualitative aspects of a situation. It supports interactive features such as selection and tooltip.
Reverses the axis labels and ticks. This swaps the higher and lower ranges of an axis.
Customize the start angle of the chart to rotate it.
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.
Supports different types of series like line, column, spline, range area, scatter, and stacked area.
You can compose the wind rose chart with the help of stacked column series in polar and radar charts.
@Html.EJS().Chart("container").Series(series =>
{
series.Type(Syncfusion.EJ2.Charts.ChartSeriesType.Polar).DrawType(Syncfusion.EJ2.Charts.ChartDrawType.Line).XName("x").YName("y1").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=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;
}