RE: [flexcoders] Dynamic LineChart; no line showing

2007-01-08 Thread Ely Greenfield
If you can post an example that doesn't require the server, I might be able to help. Try capturing the result into a variable in the application, and see if your example works that way. If it still doesn't work, post the sample and we can go from there. Ely.

RE: [flexcoders] Dynamic LineChart; no line showing

2007-01-05 Thread Matt Horn
Just a quick guess, but maybe you need to reverse these two statements? [Before] chart.series = mySeries; mySeries.push(lseries); So that you instead push the series onto the series stack before applying the series to the chart: [After] chart.series = mySeries; mySeries.push(lseries); -matt