Packageorg.apache.flex.charts.core
Interfacepublic interface IChartItemRenderer extends IItemRenderer, IEventDispatcher, flash.events.IEventDispatcher
Implementors BoxItemRenderer, SVGBoxItemRenderer

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

The IChartItemRenderer interface is the interface implemented by any class that draws chart graphics.



Public Properties
 PropertyDefined By
 Inheriteddata : Object
The data item to be displayed by the item renderer.
IItemRenderer
  height : Number
[write-only] The display height for the itemRenderer.
IChartItemRenderer
  index : int
The index of this itemRenderer instance with its series.
IChartItemRenderer
 InheriteditemRendererParent : Object
The parent component of the itemRenderer instance.
IItemRenderer
 InheritedlistData : Object
Additional data about the list structure that might be useful to itemRenderer implementations.
IItemRenderer
  series : IChartSeries
The series to which this itemRenderer instance belongs.
IChartItemRenderer
  width : Number
[write-only] The display width for the itemRenderer.
IChartItemRenderer
  x : Number
The x display position for the itemRenderer.
IChartItemRenderer
  xField : String
The name of the field containing the X-axis value found in the data property.
IChartItemRenderer
  y : Number
The y display position for the itemRenderer.
IChartItemRenderer
  yField : String
The name of the field containing the Y-axis value found in the data property.
IChartItemRenderer
Property Detail
heightproperty
height:Number  [write-only]

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

The display height for the itemRenderer. This is set by the chart's layout manager.


Implementation
    public function set height(value:Number):void
indexproperty 
index:int

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

The index of this itemRenderer instance with its series.


Implementation
    public function get index():int
    public function set index(value:int):void
seriesproperty 
series:IChartSeries

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

The series to which this itemRenderer instance belongs. Or, the series being presented.


Implementation
    public function get series():IChartSeries
    public function set series(value:IChartSeries):void
widthproperty 
width:Number  [write-only]

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

The display width for the itemRenderer. This is set by the chart's layout manager.


Implementation
    public function set width(value:Number):void
xproperty 
x:Number

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

The x display position for the itemRenderer. This is set by the chart's layout manager.


Implementation
    public function get x():Number
    public function set x(value:Number):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 of the field containing the X-axis value found in the data property.


Implementation
    public function get xField():String
    public function set xField(value:String):void
yproperty 
y:Number

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

The y display position for the itemRenderer. This is set by the chart's layout manager.


Implementation
    public function get y():Number
    public function set y(value:Number):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 of the field containing the Y-axis value found in the data property.


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