axis:IAxis [read-write]
The axis object associated with this renderer.
This property is managed by the enclosing chart,
and could be explicitly set if multiple axes renderers are used.
Implementation
public function get axis():IAxis
public function set axis(value:IAxis):void
chart:ChartBase [read-only]
The base chart for this AxisRenderer.
Implementation
protected function get chart():ChartBase
gutters:Rectangle [read-write]
Implementation
public function get gutters():Rectangle
public function set gutters(value:Rectangle):void
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
public function RadialAxisRenderer()
Constructor.
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.
|
protected override function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
Parameters
| unscaledWidth:Number |
| |
| unscaledHeight:Number |