tags:

views:

218

answers:

3

Hey All,

Anyone have an minimal example of ASP.NET MVC and dotnetcharting.com control lying around?

Thanks, rodchar

+1  A: 

You can download ASP.NET samples of the .NET Charting control here. It gives a wide range of examples and provides code snippets to go with.

James
I updated the chart samples for .NET 4.0 and added two additional projects -- ChartsWithMVC and ChartsWithoutWebForms for anyone who wants to see one way to utilize the asp.net charts in a non-web form world. Download sample code here: http://develocity.blogspot.com/2010/04/aspnet-chart-controls-without-web-forms.html
Elmo Gallen
A: 

You can use the Microsoft ASP.NET chart control that James mentions with the MVC Framework. The control was designed for use with WebForms, but it will work from an MVC View as long as you don't need to handle postback events. If you do, you may want to consider developing a hybrid solution with WebForms pages where charting is required and MVC for the rest of the site.

pmarflee