0
A
答えて
1
は、アドビLiveDocsのに基づいて、簡単な例である:
はしかし、注意してください、unproperlyレンダリングするためにこのような一連の上にツールチップが発生するのFlexのAreaSeriesにバグがあります。 AreaSeriesが(正しい)その高い値のアイテムのyField値を表示し、それは低い値に同じ値を表示する(ライン2058とAreaSeries.asの2083年)...
<?xml version="1.0"?>
<fx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
[Bindable]
private var expensesAC:ArrayCollection = new ArrayCollection([
{ Month: "Jan", Profit: 2000, Expenses: 1500, Amount: 450 },
{ Month: "Feb", Profit: 1000, Expenses: 200, Amount: 600 },
{ Month: "Mar", Profit: 1500, Expenses: 500, Amount: 300 },
{ Month: "Apr", Profit: 1800, Expenses: 1200, Amount: 900 },
{ Month: "May", Profit: 2400, Expenses: 575, Amount: 500 } ]);
]]>
</fx:Script>
<fx:Declarations>
<mx:SolidColor id="sc3" color="green" alpha=".3"/>
</fx:Declarations>
<mx:AreaChart id="Areachart" height="100%" width="100%"
paddingLeft="5" paddingRight="5"
showDataTips="true" dataProvider="{expensesAC}">
<mx:horizontalAxis>
<mx:CategoryAxis categoryField="Month"/>
</mx:horizontalAxis>
<mx:series>
<mx:AreaSeries
yField="Profit"
minField="Expenses"
areaFill="{sc3}"/>
</mx:series>
</mx:AreaChart>
おかげでたくさんの人が、これは私がまさに必要でした。申し訳ありませんが、私は今まで返信しませんでした。あなたは私が[ここ](http://stackoverflow.com/questions/7923954/finished-break-even-areachart-but-can-investors-understand-it)で終わったものを見ることができます。 –