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