如何更改图表中的背景线颜色?

时间:2012-07-26 23:23:49

标签: flex charts flex3

我似乎无法了解如何更改折线图中的背景水平(和垂直)线条颜色。这是我到目前为止所做的:

<mx:LineChart width="100%" height="100%" dataProvider="{dataSet}">
    <mx:series>
        <mx:LineSeries showDataEffect="{eff}" yField="x" />
    </mx:series>
</mx:LineChart> 

line chart with white background lines

1 个答案:

答案 0 :(得分:0)

我明白了。您可以在图表的background elements属性中定义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