我似乎不知道如何更改折线图中的背景水平(和垂直)线条颜色。这是我到目前为止所拥有的:
<mx:LineChart width="100%" height="100%" dataProvider="{dataSet}">
<mx:series>
<mx:LineSeries showDataEffect="{eff}" yField="x" />
</mx:series>
</mx:LineChart>
我似乎不知道如何更改折线图中的背景水平(和垂直)线条颜色。这是我到目前为止所拥有的:
<mx:LineChart width="100%" height="100%" dataProvider="{dataSet}">
<mx:series>
<mx:LineSeries showDataEffect="{eff}" yField="x" />
</mx:series>
</mx:LineChart>
我想到了。您在图表的背景元素属性中定义一个 GridLines 对象,如下所示:
<mx:LineChart width="100%" height="100%" dataProvider="{dataSet}">
<mx:backgroundElements>
<mx:GridLines gridDirection="both"/>
</mx:backgroundElements>
</mx:LineChart>
http://help.adobe.com/en_US/Flex/4.0/UsingSDK/WS2db454920e96a9e51e63e3d11c0bf69084-7c45.html