vote up 1 vote down star
1

I have seen Microsoft charting control @ here and here.

It has good demonstration for displaying bar chart in MVC.

On scottgu's blog There are plenty of examples but they are using server controls (i.e <asp:CHRT runat"server">. This is also supported in MVC by Modifying web.config.

but as we should avoid using server control as postback is not supported in MVC, we should render it as shown in "without code behind page" example.

Exactly like This Question.

Now I would like to know how other chart types (like pie chart) can be created in controller?

flag

70% accept rate

3 Answers

vote up 0 vote down

http://stackoverflow.com/questions/319835/new-asp-net-charting-controls-will-they-work-with-mvc-eventually

Something that was created quite a while ago, but is relevant to this topic.

link|flag
vote up 0 vote down

Try using 3rd party flash charting controls like amCharts. They can be configured via a simple XML file and get their data from static or generated XML or CSV files or streams.

link|flag
This is a valid option and shouldn't be downvoted – Arnis L. Sep 14 at 13:37
vote up 4 vote down

I like google charts. Just write a HTMLHelper to render the correct URL.

http://code.google.com/apis/chart/

link|flag
neat stuff. thanks. :) – Arnis L. Sep 14 at 13:36

Your Answer

Get an OpenID
or

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