0
A
回答
1
那麼這裏是一個簡單的例子,基於Adobe LiveDocs中:
要小心,雖然,有在Flex中AreaSeries導致這樣一系列工具提示unproperly渲染的錯誤。檢測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>
相關問題
- 1. 盈虧平衡的Excel
- 2. OSGi的盈虧平衡點
- 3. 的Excel圖表盈虧平衡攔截點
- 4. 按需與保留3年的盈虧平衡點似乎完全不符合光的使用要求?
- 5. 盈虧內外磨合後不工作
- 6. Flex的AreaChart錯誤
- 7. 關於平衡樹分析
- 8. 平衡不平衡/部分平衡BST的複雜性?
- 9. 不平衡方差分析在Matlab
- 10. 平衡分
- 11. 充分利用平衡
- 12. Flex高級數據網格顯示使用平面數據的分層樹?
- 13. 在flex中的水平列表中顯示分頁
- 14. optaplanner的雲平衡示例
- 15. 平均使用Oracle分析
- 16. 如何建立平衡的單因素方差分析的LM()
- 17. 大部分平衡分區的排列
- 18. 不平衡分類數據
- 19. 使用必須平衡
- 20. 使用arduino平衡quadcopter
- 21. 地格邊界盈(固定顯示)
- 22. 如何管理負載平衡網站的網站分析?
- 23. 平衡搜索樹查詢,漸進的分析
- 24. 單向重複測量方差分析與不平衡數據
- 25. 顯示平均評分
- 26. Flex:如何使用Flex Builder分析器計算UI操作?
- 27. 關於使用週期的平衡分支
- 28. NServiceBus F5負載平衡不使用分銷商的訂戶
- 29. postgresql的負載平衡/分配
- 30. Tensorflow中的非平衡二元分類
感謝很多人,這正是我需要的。對不起,我直到現在纔回復。你可以看到我在[這裏]結束了什麼(http://stackoverflow.com/questions/7923954/finished-break-even-areachart-but-can-investors-understand-it)。 –