Problema Datagrid Flex

Pessoal to tetando inserir o mx:resize dentro do meu fx:compoennte mais ta dando o seguinte erro :

Não foi possivel resolver mx:resize para uma implementacao de componente.

Estou usando Flex 4

Alguem sabe oque pode ser ?

<mx:DataGridColumn headerText="% Conclusão" dataField="conclusao">
							<mx:itemRenderer>
								<fx:Component>
									<mx:HBox horizontalScrollPolicy="off" verticalScrollPolicy="off" width="100%" height="100%">
										<mx:resize duration="1500" target="{_grchart}" id="_eff" widthTo="{Number(data.conclusao)*0.01}"/>
										<fx:Script>
											<![CDATA[
											import mx.effects.easing.Back;
											]]>
										</fx:Script>
										<mx:HBox  id="_grchart" creationComplete="_eff.play()" verticalScrollPolicy="off" horizontalScrollPolicy="off" backgroundColor="#a604e9"
												  width="0" height="100%"/>
										<mx:Label text="{String(int(data.conclusao)*0.01)}%"/>
									</mx:HBox>
								</fx:Component>
							</mx:itemRenderer>
						</mx:DataGridColumn>