Hi!
I think it is a question easy to answer, so I'll put it quick:
Which parameter should I put not to automatically resize an Image that is put on an ItemRenderer?
Ex (in which the image gets resized):
<mx:AdvancedDataGridColumn headerText="estado" dataField="estado" width="30"
editable="false" resizable="false">
<mx:itemRenderer>
<mx:Component>
<mx:Image source="{Settings.AdoQUrl + Settings.imgFolder + 'adm/ofe.'
+ data.estado + '.png'}">
</mx:Image>
</mx:Component>
</mx:itemRenderer>
</mx:AdvancedDataGridColumn>
Thanks!