| Package | org.openzet.charts.series.items |
| Class | public class RadarSeriesSegment |
| Property | Defined 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 | ||
| Method | Defined by | ||
|---|---|---|---|
|
RadarSeriesSegment(element:RadarSeries, index:uint, items:Array, start:uint, end:uint)
Constructor.
| RadarSeriesSegment | ||
|
Returns a copy of this segment.
| RadarSeriesSegment | ||
| element | property |
public var element:RadarSeriesThe series or element that owns this segment.
| end | property |
public var end:uintThe index into the items array of the last item in this segment, inclusive.
| index | property |
public var index:uintThe index of this segment in the array of segments representing the line series.
| items | property |
public var items:ArrayThe array of chartItems representing the full line series that owns this segment.
| start | property |
public var start:uintThe index into the items array of the first item in this segment.
| RadarSeriesSegment | () | constructor |
public function RadarSeriesSegment(element:RadarSeries, index:uint, items:Array, start:uint, end:uint)Constructor.
Parameterselement: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.
|
| clone | () | method |
public function clone():RadarSeriesSegmentReturns a copy of this segment.
ReturnsRadarSeriesSegment |