It seems that the Render method is not supported in DotNet.HighCharts which makes it hard to align multiple charts in the same page.
I am able to populate multiple charts on the same page, but I am not able to align them next to each other. However they will be displayed after each other. Does anyone has an idea how to display 2 charts next to each other? or even 4 charts as a block?
Note: I am using ASP.Net Mvc3.
Why not create a sets of DIVs that will hold one chart DIV container each.
With a layout you decide (side by side or whatever). And then send each chart to the “master” container you want?
Here is some psuedo-code since I am not too familiar with MVC.
Create a table or some other structured container with addressable elements in your display page (aspx, etc). Then add your literal tag for each chart separately inside one of these elements (ie, a table cell). In the codebehind create your individual charts instead of what series of charts.
So something like:
Then in your codebehind do something like:
This is not pretty but it gets the job done.