Does anybody have any good links to examples of programatically 
creating multiple series in a chart?

I have a chart that I'd like to populate with a new series everytime a 
checkbox is checked, so it is possible to have up to maybe half a dozen 
different series on the chart at the same time.
I'm having some difficulty to get them to overlay each other though...

var cs:AreaSeries = new AreaSeries();
cs.id = brokerId;
cs.yField = 'value';
this.chart.series.push(cs);


The chart itself holds the dataProvider, not the series.
This works with the first series, but not more than one.
Any suggestions?

Reply via email to