Packageorg.apache.flex.charts.core
Interfacepublic interface IConnectedItemRenderer extends IChartItemRenderer, IItemRenderer, IEventDispatcher

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

The IConnectedItemRenderer interface is the interface used to connect data points on a chart. This interface adds a connection point, (x2,y2), to the (x,y) already supplied by IChartItemRenderer.



Public Properties
 PropertyDefined By
 Inheriteddata : Object
The data item to be displayed by the item renderer.
IItemRenderer
 Inheritedheight : Number
[write-only] The display height for the itemRenderer.
IChartItemRenderer
 Inheritedindex : 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
 Inheritedseries : IChartSeries
The series to which this itemRenderer instance belongs.
IChartItemRenderer
 Inheritedwidth : Number
[write-only] The display width for the itemRenderer.
IChartItemRenderer
 Inheritedx : Number
The x display position for the itemRenderer.
IChartItemRenderer
  x2 : Number
The x-coordinate of the second point to connect.
IConnectedItemRenderer
 InheritedxField : String
The name of the field containing the X-axis value found in the data property.
IChartItemRenderer
 Inheritedy : Number
The y display position for the itemRenderer.
IChartItemRenderer
  y2 : Number
The y-coordinate of the second point to connect.
IConnectedItemRenderer
 InheritedyField : String
The name of the field containing the Y-axis value found in the data property.
IChartItemRenderer
Property Detail
x2property
x2:Number

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

The x-coordinate of the second point to connect.


Implementation
    public function get x2():Number
    public function set x2(value:Number):void
y2property 
y2:Number

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

The y-coordinate of the second point to connect.


Implementation
    public function get y2():Number
    public function set y2(value:Number):void