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

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
 Inheriteddown : Boolean
true if the item renderer is rendering an item that is under the mouse pointer and the mouse button is down.
IItemRenderer
  fillColor : uint
The primary or preferred color to use for the graphics for the type of chart.
IChartItemRenderer
  height : Number
[write-only] The display height for the itemRenderer.
IChartItemRenderer
 Inheritedhovered : Boolean
true if the item renderer is rendering an item that is under the mouse pointer.
IItemRenderer
 Inheritedindex : int
The index of the data item in the data provider.
IItemRenderer
 InheritedlabelField : String
The property on the data item that the item renderer should renderer.
IItemRenderer
 Inheritedselected : Boolean
true if the item renderer is rendering an item that is selected.
IItemRenderer
  width : Number
[write-only] The display width for the itemRenderer.
IChartItemRenderer
  x : Number
[write-only] 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
[write-only] 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
fillColorproperty
fillColor:uint

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

The primary or preferred color to use for the graphics for the type of chart.


Implementation
    public function get fillColor():uint
    public function set fillColor(value:uint):void
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
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  [write-only]

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 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  [write-only]

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 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