0

折れ線グラフの背景の水平 (および垂直) 線の色を変更する方法がわかりません。これが私がこれまでに持っているものです:

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

白い背景の線を持つ折れ線グラフ

4

1 に答える 1

0

私はそれを考え出した。次のように、チャートの背景要素プロパティ内に 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

于 2012-07-26T23:54:24.637 に答える