Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
at what part is the exception occurring – COLD TOLD Mar 31 '12 at 23:03

1 Answer

There are quite a few ways to generate charts in Asp.Net MVC application. See these two ways of doing it, It may help you in your problem

http://www.codecapers.com/post/Build-a-Dashboard-With-Microsoft-Chart-Controls.aspx

http://carlhoerberg.com/aspnet-mvc-and-the-microsoft-chart-controls-in-net-40

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.