1.LineChart 主要用于用线条显示数据图表信息

Flash 报表之 LineChart & PieChart 

 

2. LineChart 的使用代码

 1 <?xml version="1.0" encoding="utf-8"?>
 2 <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
 3     <mx:Script>
 4         <![CDATA[
 5             import mx.collections.ArrayCollection;
 6             
 7             public var scores:ArrayCollection=new ArrayCollection([
 8                 {id:1,name:"贺臣",Maths:98,Chinese:82},
 9                 {id:2,name:"菜包",Maths:66,Chinese:77},
10                 {id:3,name:"张三",Maths:23,Chinese:99},
11                 {id:4,name:"王五",Maths:88,Chinese:55}
12             ]);
13             
14         ]]>
15     </mx:Script>
16     <mx:Panel x="98" y="40" width="485" height="392" layout="absolute">
17         <mx:LineChart x="10" y="10" id="myLineChart" width="445" height="261" showDataTips="true" dataProvider="{scores}">
18             <mx:horizontalAxis>
19                 <mx:CategoryAxis dataProvider="{scores}" categoryField="name"/>
20             </mx:horizontalAxis>
21             <mx:series>
22                 <mx:LineSeries yField="Maths" xField="name" displayName="数学"/>
23                 <mx:LineSeries yField="Chinese" xField="name" displayName="中文"/>
24             </mx:series>
25         </mx:LineChart>
26         <mx:Legend dataProvider="{myLineChart}" x="10" y="289" width="445"/>
27     </mx:Panel>
28 </mx:Application>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-06
  • 2022-02-18
  • 2021-09-11
  • 2021-11-25
  • 2022-12-23
猜你喜欢
  • 2021-05-24
  • 2021-09-19
  • 2021-09-30
  • 2021-12-06
  • 2021-06-13
  • 2021-06-25
  • 2021-05-31
相关资源
相似解决方案