| Property | Defined by | ||
|---|---|---|---|
| label : String
Specifies the name of the axis displayed in the Radarchart.
| RadarChartAxis | ||
| max : Number
The maximum value of all the series that corresponds to this axis.
| RadarChartAxis | ||
| min : Number
The minimum value of all the series that corresponds to this axis.
| RadarChartAxis | ||
| name : String
Specifies the name of the axis in the dataProvider.
| RadarChartAxis | ||
| order : Number
Indicates the prefered order of the axis.
| RadarChartAxis | ||
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new RadarChartAxis instance.
| RadarChartAxis | ||
|
resetMinMax():void
| RadarChartAxis | ||
| label | property |
label:String [read-write]
Specifies the name of the axis displayed in the Radarchart.
Returns name if no value is specified by the user.
public function get label():String
public function set label(value:String):void
| max | property |
max:Number [read-write]The maximum value of all the series that corresponds to this axis. This maximum value is determined automatically. However, you can specify a custom maximum value that will be used if no series have a higher value.
Implementation public function get max():Number
public function set max(value:Number):void
| min | property |
min:Number [read-write]The minimum value of all the series that corresponds to this axis. This minimum value is determined automatically. However, you can specify a custom minimum value that will be used if no series have a lower value.
Implementation public function get min():Number
public function set min(value:Number):void
| name | property |
name:String [read-write]Specifies the name of the axis in the dataProvider. It is the field in each series data that is used to determine the value corresponding to this axis.
Implementation public function get name():String
public function set name(value:String):void
| order | property |
order:Number [read-write]
Indicates the prefered order of the axis.
Axes are ordered using their order property by puting the ones that
have order = NaN at the end and ordering the other axes by ascending order.
The default value is NaN.
public function get order():Number
public function set order(value:Number):void
| RadarChartAxis | () | constructor |
public function RadarChartAxis()Creates a new RadarChartAxis instance.
| resetMinMax | () | method |
public function resetMinMax():void