Packageorg.apache.flex.charts.core
Interfacepublic interface IChartSeries
Implementors BarChartSeries

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

The IChartSeries interface is the basic interface for any type of chart data series.



Public Properties
 PropertyDefined By
  fillColor : uint
The preferred color to use for the series renderer.
IChartSeries
  itemRenderer : IFactory
The itemRenderer class or factory that produces an instance of that class.
IChartSeries
  xField : String
The name field that represents the X-axis value for the chart series.
IChartSeries
  yField : String
The name field that represents the Y-axis value for the chart series.
IChartSeries
Property Detail
fillColorproperty
fillColor:uint

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

The preferred color to use for the series renderer.


Implementation
    public function get fillColor():uint
    public function set fillColor(value:uint):void
itemRendererproperty 
itemRenderer:IFactory

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

The itemRenderer class or factory that produces an instance of that class. This renderer uses the series data and properties to draw the representation for the chart type (e.g., the BarChart draws a bar in the fillColor).


Implementation
    public function get itemRenderer():IFactory
    public function set itemRenderer(value:IFactory):void
xFieldproperty 
xField:String

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

The name field that represents the X-axis value for the chart series.


Implementation
    public function get xField():String
    public function set xField(value:String):void
yFieldproperty 
yField:String

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

The name field that represents the Y-axis value for the chart series.


Implementation
    public function get yField():String
    public function set yField(value:String):void