I'd like a webpage with multiple charts. The data for the charts resides in my model, which I create in the controller and pass to the view. But, I'm running into trouble creating the charts within the view.
Microsoft has created this class to create basic charts within MVC: https://msdn.microsoft.com/en-us/library/system.web.helpers.chart%28v=vs.111%29.aspx
It has it's quirks. For instance, if you want to display multiple charts you need to call from the view back to a controller. (It's explained here in the section "Displaying Charts Inside a Web Page": http://www.asp.net/web-pages/overview/data/7-displaying-data-in-a-chart)
Basically you need to use @Url.Action("MakeChart") as the src to an HTML image tag. But, how can you pass your model within the view back to the controller to create the image? If I try to pass the model through @Url.Action, the model is a null reference.
