I saw the Microsoft @ control control here and here .
It has a good demo for displaying histograms in MVC.
There are many examples on the scottgu blog, but they use server-side controls (i.e <asp:CHRT runat"server">.. This is also supported in MVC by modifying web.config.
but we should avoid using server management, since postback is not supported in MVC, we should, as shown in the example "without code per page".
Just like Question .
Now I would like to know how other types of charts (e.g. pie chart) can be created in the controller?
Vikas source
share