| Package | org.openzet.charts |
| Class | public class AngularAxisRenderer |
| Inheritance | AngularAxisRenderer mx.charts.chartClasses.DualStyleObject |
| Implements | IRadarAxisRenderer |
| Property | Defined by | ||
|---|---|---|---|
| axis : IAxis
The axis object associated with this renderer.
| AngularAxisRenderer | ||
| gutters : Rectangle | AngularAxisRenderer | ||
| highlightElements : Boolean
Specifies wheter to highlight chart elements like Series on mouse rollover.
| AngularAxisRenderer | ||
| ticks : Array [read-only]
Contains an array that specifies where Flex
draws the tick marks along the axis.
| AngularAxisRenderer | ||
| Property | Defined by | ||
|---|---|---|---|
| chart : ChartBase [read-only]
The base chart for this AxisRenderer.
| AngularAxisRenderer | ||
| Method | Defined by | ||
|---|---|---|---|
|
Constructor.
| AngularAxisRenderer | ||
|
adjustGutters(workingGutters:Rectangle, adjustable:Object):Rectangle
Adjusts its layout to accomodate the gutters passed in.
| AngularAxisRenderer | ||
| Method | Defined by | ||
|---|---|---|---|
|
updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
| AngularAxisRenderer | ||
| axis | property |
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 | property |
chart:ChartBase [read-only]The base chart for this AxisRenderer.
Implementation protected function get chart():ChartBase
| gutters | property |
gutters:Rectangle [read-write]Implementation
public function get gutters():Rectangle
public function set gutters(value:Rectangle):void
| highlightElements | property |
highlightElements:Boolean [read-write]Specifies wheter to highlight chart elements like Series on mouse rollover.
Implementation public function get highlightElements():Boolean
public function set highlightElements(value:Boolean):void
| ticks | property |
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
| AngularAxisRenderer | () | constructor |
public function AngularAxisRenderer()Constructor.
| adjustGutters | () | method |
public function adjustGutters(workingGutters:Rectangle, adjustable:Object):RectangleAdjusts 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).
ParametersworkingGutters: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.
|
Rectangle — A rectangle that defines the dimensions of the gutters, including the
adjustments.
|
| updateDisplayList | () | method |
protected override function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):voidParameters
unscaledWidth:Number |
|
unscaledHeight:Number |