Reputation:
There is a basic HTML helper for generating charts in .NET, but it does not allow to specify some basic styling, position of the legend and things like that. Alternative is to generate chart in a controller using old DataVisualization.Charting namespace, but this is too hacky. I don't understand why MVC 3 does not address this issue? The charts are too basic.
THank you
Upvotes: 1
Views: 2421
Reputation:
Solution is to use MSCharts that were originally written for web forms. Servlets should generate chart images and serve them to calling views. This has been explained in: Charting in ASP.Net MVC 3
Upvotes: 0