Packagefr.kapit.radarchart
Classpublic class RadarChartAxis



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined by
  
Creates a new RadarChartAxis instance.
RadarChartAxis
  
resetMinMax():void
RadarChartAxis
Property detail
labelproperty
label:String  [read-write]

Specifies the name of the axis displayed in the Radarchart. Returns name if no value is specified by the user.

Implementation
    public function get label():String
    public function set label(value:String):void
maxproperty 
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
minproperty 
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
nameproperty 
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
orderproperty 
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.

Implementation
    public function get order():Number
    public function set order(value:Number):void
Constructor detail
RadarChartAxis()constructor
public function RadarChartAxis()

Creates a new RadarChartAxis instance.

Method detail
resetMinMax()method
public function resetMinMax():void