All, As I said earlier the answer is still simple just embed the font in the default application (i.e. index.mxml)Code for ChartWidget: <fx:Style>
@namespace mx "library://ns.adobe.com/flex/mx";
@font-face{
src: url("assets/arial.ttf");
fontFamily: myFontFamily;
embedAsCFF: false;
}
mx|ColumnChart {
fontFamily: myFontFamily;
fontSize: 16;
}
</fx:Style>
<mx:horizontalAxisRenderers>
<mx:AxisRenderer axis="{myXAxis}" labelRotation="45"/>
</mx:horizontalAxisRenderers>
Code for index.mxml <fx:Style>
@font-face{
src: url("assets/arial.ttf");
fontFamily: myFontFamily;
embedAsCFF: false;
}
</fx:Style>