可以把前面提到的图表混合起来使用. 代码如下: <?xml version="1.0" encoding="utf-8"?> <!-- charts/MultipleSeries.mxml --> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="500" height="600"> <mx:Script> <!--[CDATA[ [Bindable] public var SMITH:Array = [ {date:"22-Aug-05", close:45.87}, {date:"23-Aug-05", close:45.74}, {date:"24-Aug-05", close:45.77}, {date:"25-Aug-05", close:46.06}, ]; [Bindable] public var DECKER:Array = [ {date:"22-Aug-05", close:45.59}, {date:"23-Aug-05", close:45.3}, {date:"24-Aug-05", close:46.71}, {date:"25-Aug-05", close:46.88}, ]; ]]--> </mx:Script> <mx:Panel title="多个数据序列示例" width="400" height="400"> <mx:ColumnChart id="mychart" dataProvider="{SMITH}" showDataTips="true" height="250" width="350" > <mx:horizontalAxis> <mx:CategoryAxis categoryField="date"/> </mx:horizontalAxis> <mx:verticalAxis> <mx:LinearAxis minimum="40" maximum="50"/> </mx:verticalAxis> <mx:series> <mx:ColumnSeries dataProvider="{SMITH}" xField="date" yField="close" displayName="SMITH" > </mx:ColumnSeries> <mx:LineSeries dataProvider="{DECKER}" xField="date" yField="close" displayName="DECKER" > </mx:LineSeries> </mx:series> </mx:ColumnChart> </mx:Panel> </mx:Application> 图表如下图所示: