Packageorg.openzet.charts.series.items
Classpublic class RadarSeriesSegment

Represents the information required to render a segment in a RadialSeries. The RadialSeries class passes a RadialSeriesSegment to its lineRenderer when rendering.



Public Properties
 PropertyDefined by
  element : RadarSeries
The series or element that owns this segment.
RadarSeriesSegment
  end : uint
The index into the items array of the last item in this segment, inclusive.
RadarSeriesSegment
  index : uint
The index of this segment in the array of segments representing the line series.
RadarSeriesSegment
  items : Array
The array of chartItems representing the full line series that owns this segment.
RadarSeriesSegment
  start : uint
The index into the items array of the first item in this segment.
RadarSeriesSegment
Public Methods
 MethodDefined by
  
RadarSeriesSegment(element:RadarSeries, index:uint, items:Array, start:uint, end:uint)
Constructor.
RadarSeriesSegment
  
Returns a copy of this segment.
RadarSeriesSegment
Property detail
elementproperty
public var element:RadarSeries

The series or element that owns this segment.

endproperty 
public var end:uint

The index into the items array of the last item in this segment, inclusive.

indexproperty 
public var index:uint

The index of this segment in the array of segments representing the line series.

itemsproperty 
public var items:Array

The array of chartItems representing the full line series that owns this segment.

startproperty 
public var start:uint

The index into the items array of the first item in this segment.

Constructor detail
RadarSeriesSegment()constructor
public function RadarSeriesSegment(element:RadarSeries, index:uint, items:Array, start:uint, end:uint)

Constructor.

Parameters
element:RadarSeries — The owning series.
 
index:uint — The index of the segment in the Array of segments representing the radial series.
 
items:Array — The Array of RadialSeriesItems representing the full radial series.
 
start:uint — The index in the items Array of the first item in this segment.
 
end:uint — The index in the items Array of the last item in this segment, inclusive.
Method detail
clone()method
public function clone():RadarSeriesSegment

Returns a copy of this segment.

Returns
RadarSeriesSegment