I am trying to create a pie chart generated from a database. I want to be able to calculate the number of associates located in each region but I am getting the following error message:
NotSupportedException was unhandled by user code - Specified method is not supported.
Here is the code I have used:
Controller:
public ActionResult RegionChart()
{
var db = new AssociateDBEntities();
var key = new Chart(width: 400, height: 200)
.AddSeries(chartType: "pie")
.DataBindTable(db.Regions)
.Write(format: "png");
return null;
}
View:
<div id="chart">
<p><b>Associate location (region)</b></p>
<img src="@Url.Action("RegionChart")" alt="Associate location"/>
</div>
This is the first time I have used the chart control in ASP.NET so am not sure if I am going the right way about this. Does anyone know where I am going wrong?