Adobe Flex 2 Language Reference - collected by Jimbob | Back to MY RESOURCES


(Adobe Flex Charting 2 components only)
Packagemx.charts.series.items
Classpublic class PlotSeriesItem
InheritancePlotSeriesItem Inheritance ChartItem Inheritance EventDispatcher Inheritance Object

Represents the information required to render an item as part of a PlotSeries. The PlotSeries class passes these items to its itemRenderer when rendering.



Public Properties
 PropertyDefined by
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedelement : IChartElement
The series or element that owns the ChartItem.
ChartItem
 Inheritedindex : int
The index of the data from the series' dataProvider that the ChartItem represents.
ChartItem
 Inheriteditem : Object
The item from the series' dataProvider that the ChartItem represents.
ChartItem
 InheriteditemRenderer : IFlexDisplayObject
The instance of the chart's itemRenderer that represents this ChartItem.
ChartItem
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  radius : Number
The radius of this item, in pixels.
PlotSeriesItem
  x : Number
The x value of this item converted into screen coordinates.
PlotSeriesItem
  xFilter : Number
The x value of this item, filtered against the horizontal axis of the containing chart.
PlotSeriesItem
  xNumber : Number
The x value of this item, converted to a number by the horizontal axis of the containing chart.
PlotSeriesItem
  xValue : Object
The x value of this item.
PlotSeriesItem
  y : Number
The y value of this item converted into screen coordinates
PlotSeriesItem
  yFilter : Number
The y value of this item, filtered against the vertical axis of the containing chart.
PlotSeriesItem
  yNumber : Number
The y value of this item, converted to a number by the vertical axis of the containing chart.
PlotSeriesItem
  yValue : Object
The y value of this item.
PlotSeriesItem
Public Methods
 MethodDefined by
  
PlotSeriesItem(element:PlotSeries = null, data:Object = null, index:uint = 0)
Constructor.
PlotSeriesItem
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
EventDispatcher
 Inherited
Returns a copy of this ChartItem.
ChartItem
 Inherited
Dispatches an event into the event flow.
EventDispatcher
 Inherited
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
EventDispatcher
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
EventDispatcher
 Inherited
setPropertyIsEnumerable(name:String, isEnum:Boolean = true):void
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
 Inherited
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
EventDispatcher
Events
 EventSummaryDefined by
 Inherited Dispatched when Flash Player gains operating system focus and becomes active.EventDispatcher
 Inherited Dispatched when Flash Player loses operating system focus and is becoming inactive.EventDispatcher
Property detail
radiusproperty
public var radius:Number

The radius of this item, in pixels.

xproperty 
public var x:Number

The x value of this item converted into screen coordinates.

xFilterproperty 
public var xFilter:Number

The x value of this item, filtered against the horizontal axis of the containing chart. This value is NaN if the value lies outside the axis's range.

xNumberproperty 
public var xNumber:Number

The x value of this item, converted to a number by the horizontal axis of the containing chart.

xValueproperty 
public var xValue:Object

The x value of this item.

yproperty 
public var y:Number

The y value of this item converted into screen coordinates

yFilterproperty 
public var yFilter:Number

The y value of this item, filtered against the vertical axis of the containing chart. This value is NaN if the value lies outside the axis's range.

yNumberproperty 
public var yNumber:Number

The y value of this item, converted to a number by the vertical axis of the containing chart.

yValueproperty 
public var yValue:Object

The y value of this item.

Constructor detail
PlotSeriesItem()constructor
public function PlotSeriesItem(element:PlotSeries = null, data:Object = null, index:uint = 0)

Constructor.

Parameters
element:PlotSeries (default = null) — The owning series.
 
data:Object (default = null) — The item from the dataProvider this ChartItem represents .
 
index:uint (default = 0) — The index of the item from the series's dataProvider.





collected by Jimbob 2007.05