I was wondering if it was possible to return multiple charts to a single page/view using c#?
Background Information
- C#, ASP.NET MVC3
- DotNet.Highcharts Library
Goal: My overall goal is to have a webpage with two charts using ASP.NET MVC3
Example
HighCharts g1 = new HighCharts("chart");
HighCharts g2 = new HighCharts("chart");
return View(model, g1, g2);
This is an example of what I want, but I am not too sure if this is possible. If so how would I accomplish this? If possible how would I output the charts using razor?
Thank you so much for the help, I appreciate it! Please let me know if there are any misunderstandings in the question.