I'd like to add multiple time series to a chart. I understand I can do this using dataseries, where I create a dataseries for each time series i have and then add the datapoints one by one to the series. This would normally be ok, but my time series have a lot of datapoints (30,000) in each. The result is that the chart takes forever to load. I've noticed that if I bind a list to the chart's itemssource property, then the chart loads very quickly - even if it is 30,000 data points. So, my question is, can I somehow bind a list to each individual dataseries I want to load? Will this make the chart load faster?
-Steve
-Steve