DataGrid with object array collection
<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:DataGrid> <mx:ArrayCollection> <mx:Array> <mx:Object city="A" state="CA" population="3" /> <mx:Object city="B" state="NY" population="8" /> <mx:Object city="C" state="IL" population="2" /> <mx:Object city="D" state="PA" population="1" /> </mx:Array> </mx:ArrayCollection> </mx:DataGrid> </mx:Application>