Packageorg.openzet.charts.chartClasses
Interfacepublic interface IRadarAxisRenderer extends mx.core.IUIComponent
ImplementorsAngularAxisRenderer, RadialAxisRenderer



Public Properties
 PropertyDefined by
  axis : IAxis
The axis object associated with this renderer.
IRadarAxisRenderer
  ticks : Array
[read-only] Contains an array that specifies where Flex draws the tick marks along the axis.
IRadarAxisRenderer
Public Methods
 MethodDefined by
  
adjustGutters(workingGutters:Rectangle, adjustable:Object):Rectangle
Adjusts its layout to accomodate the gutters passed in.
IRadarAxisRenderer
Property detail
axisproperty
axis:IAxis  [read-write]

The axis object associated with this renderer. This property is managed by the enclosing chart, and should not be explicitly set.

Implementation
    public function get axis():IAxis
    public function set axis(value:IAxis):void
ticksproperty 
ticks:Array  [read-only]

Contains an array that specifies where Flex draws the tick marks along the axis. Each array element contains a value between 0 and 1.

Implementation
    public function get ticks():Array
Method detail
adjustGutters()method
public function adjustGutters(workingGutters:Rectangle, adjustable:Object):Rectangle

Adjusts its layout to accomodate the gutters passed in. This method is called by the enclosing chart to determine the size of the gutters and the corresponding data area. This method provides the AxisRenderer with an opportunity to calculate layout based on the new gutters, and to adjust them if necessary. If a given gutter is adjustable, an axis renderer can optionally adjust the gutters inward (make the gutter larger) but not outward (make the gutter smaller).

Parameters
workingGutters:Rectangle — Defines the gutters to adjust.
 
adjustable:Object — Consists of four Boolean properties (left=true/false, top=true/false, right=true/false, and bottom=true/false) that indicate whether the axis renderer can optionally adjust each of the gutters further.

Returns
Rectangle — A rectangle that defines the dimensions of the gutters, including the adjustments.