Highcharts multiple charts on a single page using c# asp.net mvc3
问题 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