| Package | org.openzet.charts.series |
| Class | public class RadarSeries |
| Inheritance | RadarSeries mx.charts.chartClasses.Series |
Hide MXML Syntax
The <mx:LineSeries> tag inherits all the properties
of its parent classes and adds the following properties:
<mx:RadialSeries
Properties
radialField="null"
Styles
fill="0xFFFFFF"
itemRenderer="itemRenderer"
lineSegmentRenderer="RadialLineRenderer"
lineStroke="Stroke(0xE47801,3)"
radius="4"
/>
| Property | Defined by | ||
|---|---|---|---|
| angularAxis : IAxis
The axis object used to map data values to an angle
between 0 and 2 PI.
| RadarSeries | ||
| field : String | RadarSeries | ||
| radialAxis : IAxis | RadarSeries | ||
| Property | Defined by | ||
|---|---|---|---|
| itemType : Class [read-only]
The subtype of ChartItem used by this series
to represent individual items.
| RadarSeries | ||
| radialSegmentType : Class [read-only]
The class used by this series to store all data
necessary to represent a line segment.
| RadarSeries | ||
| renderDataType : Class [read-only]
The subtype of ChartRenderData used by this series
to store all data necessary to render.
| RadarSeries | ||
| Method | Defined by | ||
|---|---|---|---|
|
Constructor.
| RadarSeries | ||
| Method | Defined by | ||
|---|---|---|---|
|
applyItemRendererProperties(instance:DisplayObject, cache:InstanceCache):void
Customizes the item renderer instances that are used to represent the chart.
| RadarSeries | ||
|
commitProperties():void
| RadarSeries | ||
|
updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
| RadarSeries | ||
| angularAxis | property |
angularAxis:IAxis [read-write]
The axis object used to map data values to an angle
between 0 and 2 PI.
By default, this is a linear axis with the autoAdjust
property set to false.
So, data values are mapped uniformly around the chart.
public function get angularAxis():IAxis
public function set angularAxis(value:IAxis):void
| field | property |
field:String [read-write]
The default value is null.
public function get field():String
public function set field(value:String):void
| itemType | property |
itemType:Class [read-only]The subtype of ChartItem used by this series to represent individual items. Subclasses can override and return a more specialized class if they need to store additional information in the items.
Implementation protected function get itemType():Class
| radialAxis | property |
radialAxis:IAxis [read-write]Implementation
public function get radialAxis():IAxis
public function set radialAxis(value:IAxis):void
| radialSegmentType | property |
radialSegmentType:Class [read-only]The class used by this series to store all data necessary to represent a line segment. Subclasses can override and return a more specialized class if they need to store additional information for rendering.
Implementation protected function get radialSegmentType():Class
| renderDataType | property |
renderDataType:Class [read-only]The subtype of ChartRenderData used by this series to store all data necessary to render. Subclasses can override and return a more specialized class if they need to store additional information for rendering.
Implementation protected function get renderDataType():Class
| RadarSeries | () | constructor |
public function RadarSeries()Constructor.
| applyItemRendererProperties | () | method |
protected function applyItemRendererProperties(instance:DisplayObject, cache:InstanceCache):voidCustomizes the item renderer instances that are used to represent the chart. This method is called automatically whenever a new item renderer is needed while the chart is being rendered. You can override this method to add your own customization as necessary.
Parametersinstance:DisplayObject — The new item renderer instance that is being created.
|
|
cache:InstanceCache — The InstanceCache that is used to manage the item renderer instances.
|
| commitProperties | () | method |
protected override function commitProperties():void
| updateDisplayList | () | method |
protected override function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):voidParameters
unscaledWidth:Number |
|
unscaledHeight:Number |