Mega Code Archive
Use embedded fonts for your axis titles
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}
]);
@font-face{
src:url("a.ttf");
fontFamily:myMyriad;
}
.myEmbeddedStyle {
fontFamily:myMyriad;
fontSize:20;
}