Packageorg.apache.flex.charts.core
Interfacepublic interface IChart
Implementors BarChart, ChartBase, ColumnChart, LineChart, PieChart, StackedBarChart, StackedColumnChart

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The IChart interface is the basic interface for every chart component. All charts have a least one "series" - a collection of data values for each axis of the chart (a PieChart follows this pattern, too, since the total number of items in its series represents 100% of the pie and each item contributes some percentage). A Chart then uses a set of beads particular to that chart type.



Public Properties
 PropertyDefined By
  series : Array
The collection of series for the chart.
IChart
Property Detail
seriesproperty
series:Array

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The collection of series for the chart. Each element of the series array should be of type IChartSeries.


Implementation
    public function get series():Array
    public function set series(value:Array):void