creationComplete="setTitles()">
import mx.collections.ArrayCollection;
[Bindable]
public var expenses:ArrayCollection = new ArrayCollection([
{Month:"Jan", Profit:2000, Expenses:1500},
{Month:"Feb", Profit:1000, Expenses:200},
{Month:"Mar", Profit:1500, Expenses:500}
]);
private function setTitles():void {
la1.title="Dollars";
}
.myStyle { fontFamily:Verdana; fontSize:12; color:#4691E1;
fontWeight:bold; fontStyle:italic; }
dataProvider="{expenses}">
displayName="Profit" />
displayName="Expenses" />