Hi everyone, I created an animated pie chart that is divided into 3
segments.
<mx:PieChart dataProvider= "{test}">
<mx:series>
<mx:PieSeries labelPosition= "outside" nameField="name"
field="field" >
<mx:showDataEffect>
<mx:SeriesInterpola te/>
</mx:showDataEffect >
</mx:PieSeries>
</mx:series>
</mx:PieChart>
The pie animates perfectly but when new data comes in, if the new
data has only data for 2 out of the 3 segments, it will animate
correctly and display the sections correctly but the old data from
the 3rd section remains as if it's cached somehow. If I minimize IE
and then restore it, the old data disappears as if the page
refreshes... Is there a way to automatically refresh the page still
animating the pie charts. If I remove the animation I do not have
this problem.
Thanks.
-David