Packageardisia.charts.radar.data
Classpublic class RadarSeries
InheritanceRadarSeries Inheritance Object

Data type used to describe a series for the Radar class.



Public Properties
 PropertyDefined By
  color : Number = NaN
The color used for the series.
RadarSeries
  displayName : String
The string displayed to describe the series.
RadarSeries
  field : String
The value on the data that describes the data for this series.
RadarSeries
  fieldValue : *
The value on the field to match in the dataProvider to get the series data for this axis.
RadarSeries
Property Detail
colorproperty
public var color:Number = NaN

The color used for the series. Leave as NaN to get the color from a color format function or the class defaults.

The default value is NaN.

displayNameproperty 
public var displayName:String

The string displayed to describe the series.

The default value is "".

fieldproperty 
public var field:String

The value on the data that describes the data for this series.

E.G. If the data object is: {nation:"USA"}, and the series field is "nation", a fieldValue of "USA" would indicate that this data object belongs to the USA series.

The default value is "".

fieldValueproperty 
public var fieldValue:*

The value on the field to match in the dataProvider to get the series data for this axis.

E.G. If the data object is: {nation:"USA"}, and the series field is "nation", a fieldValue of "USA" would indicate that this data object belongs to the USA series.

The default value is null.