Sorry but i don't use any effect and the bug surfaces even if i tried your suggested solution? I use Mate. Here is my code:
[Bindable]
private var _graficoStatistiche:ArrayCollection;
private function dataForPieChart_collectionChangeHandler(
event:CollectionEvent):void
{
reloadPieSeries();
series.validateProperties();
series.validateNow();
series.validateDisplayList();
}
public function set graficoStatistiche(value:ArrayCollection):void
{
_graficoStatistiche = value;
/* Add a Collection Change Event Listener to the Collection. */
_graficoStatistiche.addEventListener(
CollectionEvent.COLLECTION_CHANGE,
dataForPieChart_collectionChangeHandler);
reloadPieSeries();
}
public function pieFillFunction(item:ChartItem, index:Number):IFill {
var curItem:PieSeriesItem = PieSeriesItem(item);
if(curItem.item.Tipo=="OK") {
return scOK;
} else if (curItem.item.Tipo=="Pending") {
return scPending;
} else {
return scKO;
}
}
public function get graficoStatistiche():ArrayCollection
{
return _graficoStatistiche;
}
private function displayStatistiche(data:Object, field:String, index:Number, percentValue:Number):String {
var roundPercVal : Number;
roundPercVal = Math.round(percentValue *10)/10;
var temp:String= (" " + roundPercVal).substr(0,6);
return data.Tipo + ": " + '\n' + "Numero Messaggi: " + data.Numero + '\n' + temp + "%";
}
private function reloadPieSeries():void
{
series = new PieSeries();
}
]]>
</mx:Script>
<mx:series>
<mx:PieSeries id="series" labelPosition="callout" labelFunction="displayStatistiche" fillFunction="pieFillFunction" field="Numero" >
<mx:calloutStroke>
<mx:Stroke weight="0" color="#45C02D" alpha="1.0"/>
</mx:calloutStroke>
<mx:radialStroke>
<mx:Stroke weight="0" color="#FFFFFF" alpha="0.20"/>
</mx:radialStroke>
<mx:stroke>
<mx:Stroke color="0" alpha="0.20" weight="2"/>
</mx:stroke>
</mx:PieSeries>
</mx:series>
</mx:PieChart>
Any suggestgions?
Thanks a lot
Nello