I am currently implementing a StockChart in razor.
I was able to get the chart binding nicely to a single series, but I am having trouble working out how to bind the chart to a dynamic number of series.
For example, consider a series which is a list of objects (foo) having a date and decimal property.
If I have x number of series, so something like List<List<foo>>data. How do I bind this to the chart?
I was able to get the chart binding nicely to a single series, but I am having trouble working out how to bind the chart to a dynamic number of series.
For example, consider a series which is a list of objects (foo) having a date and decimal property.
If I have x number of series, so something like List<List<foo>>data. How do I bind this to the chart?