Packagecom.flexicious.components.tinycharts.valueobjects
Classpublic class ChartItem
InheritanceChartItem Inheritance Object

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

A ChartItem represents a single item in a ChartSeries. In most standard series, there is one ChartItem created for each item in the series' dataProvider collection. ChartItems are passed to the instances of a series' itemRenderer for rendering.



Public Properties
 PropertyDefined By
  index : int
The index of the data from the series' data provider that the ChartItem represents.
ChartItem
  item : Object
The item from the series' data provider that the ChartItem represents.
ChartItem
  series : Series
The series or element that owns the ChartItem.
ChartItem
Public Methods
 MethodDefined By
  
ChartItem(series:Series = null, item:Object = null, index:uint = 0)
Constructor.
ChartItem
Property Detail
indexproperty
public var index:int

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The index of the data from the series' data provider that the ChartItem represents.

itemproperty 
public var item:Object

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The item from the series' data provider that the ChartItem represents.

seriesproperty 
public var series:Series

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

The series or element that owns the ChartItem.

Constructor Detail
ChartItem()Constructor
public function ChartItem(series:Series = null, item:Object = null, index:uint = 0)

Language Version : ActionScript 3.0
Product Version : Flex 3
Runtime Versions : Flash Player 9, AIR 1.1

Constructor.

Parameters
series:Series (default = null) — The series to which the ChartItem belongs.
 
item:Object (default = null) — The item from the series' data provider that the ChartItem represents.
 
index:uint (default = 0) — The index of the data from the series' data provider that the ChartItem represents.