柱状图ColumnChart下面X轴的显示文字字体怎么设大?
<mx:ColumnChart id="myChart"
.....
<mx:horizontalAxis>
<mx:CategoryAxis id="ca" categoryField="datetime" labelFunction="labelFun" />
</mx:horizontalAxis>
<mx:horizontalAxisRenderers>
<mx:AxisRenderer id="abcd" axis="{ca}" fontSize="200" color="red" canDropLabels="true" labelRotation="45" showLabels="true" showLine="true"/>
</mx:horizontalAxisRenderers>
.....
</mx:ColumnChart>
像这里我设置fontSize为200了 如果是自己实现了函数labelFunction 字体就没有任何变化,如果去掉labelFunction="labelFun" 字体就会变化 我想自己实现函数labelFunction 而且又能调字体大小 我应该怎么做?