Hello, I have a LineChart and I would like to use the SeriesSlide effect.
If I create my LineSeries in mxml, I can specify the showDataEffect and hideDataEffect for this. <mx:LineSeries showDataEffect=.../> However, I create my series dynamically in ActionScript and cannot find the equivalent syntax: var ls:LineSeries = new LineSeries(); ls.showDataEffect =... //invalid How can I specify the effect for the LineSeries in AS? Many Thanks, Aman

