@namespace mx "http://www.adobe.com/2006/mxml";
mx|ColumnChart {
chartSeriesStyles: PCCSeries1, PCCSeries2;
}
.PCCSeries1 {
fill:#CCFF66;
}
.PCCSeries2 {
fill: #CCFF99;
}
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} ]);
categoryField="Month" />
displayName="Profit" />
displayName="Expenses" />