[flexcoders] Re: looking for a SeriesSlide that keeps the old points on the graph

2007-05-11 Thread Aaron Wright
That would be great. I have a chart that graphs many variables in realtime. I would love an effect or something that slid values on and off the chart. The slide left/right effect right now do the entire chart! When is that useful? If I added one value, slide one value on. If I removed one value,

RE: [flexcoders] Re: looking for a SeriesSlide that keeps the old points on the graph

2007-05-11 Thread Ely Greenfield
I don't believe that would be possible with the current chart effect API. That would require the series to create a superset of the before and after items to display at the same time. The effects generally don't have the ability to ask the series to create or show more items, and they

RE: [flexcoders] Re: looking for a SeriesSlide that keeps the old points on the graph

2007-05-11 Thread Ely Greenfield
I should add...the interpolation effects do this, but they cheat. Each series has specific support for interpolation built in to them, and the interpolation effect just calls to the series to set up and execute the interpolation. Ely. From: flexcoders@yahoogroups.com

Re: [flexcoders] Re: looking for a SeriesSlide that keeps the old points on the graph

2007-05-11 Thread Pan Troglodytes
Thanks for the clarification, Ely. Probably saved me some time dinking with effects. I was afraid this might be the case. So I'm guessing the best thing to do is to turn off effects and intelligently remove/add data points. BTW, I'm using your DrillDown/Up effects and just love them. Your

RE: [flexcoders] Re: looking for a SeriesSlide that keeps the old points on the graph

2007-05-11 Thread Ely Greenfield
Glad to hear it J You could definitely try... 1) Fixing the min/max of the horizontal axis 2) Add new items off the edge of the chart. 3) Turn off filtering on your series 4) Animate the min/max of the axis 5) Remove the previous items. Not sure