Package | ardisia.components.wheelList |
Class | public class WheelList |
Inheritance | WheelList spark.components.List |
Renderers must implement IWheelListRenderer.
View the technical documentation on the Ardisia Labs website for more information.
Default MXML PropertydataProvider
Property | Defined By | ||
---|---|---|---|
allowDeselection : Boolean
If true, user can deselect a renderer using the CTRL key. | WheelList | ||
angleOffset : Number
The angle offset to use to begin layout of the renderers. | WheelList | ||
innerRadius : Number
The radius of the donut hole to put in the wheel. | WheelList | ||
useCircle : Boolean
If true, the wheel will be a circle by setting the radius to the
smaller of the width or height. | WheelList | ||
useVirtualLayout : Boolean [override] [write-only]
Not virtual layout, not useful since all pie slices are visible. | WheelList |
Method | Defined By | ||
---|---|---|---|
dispose():void
Removes the component from the display list. | WheelList |
Method | Defined By | ||
---|---|---|---|
rendererHandler(event:Event):void
Adds relevant listeners to each renderer. | WheelList | ||
smHandler(event:Event):void
Handles events on the systemManager. | WheelList |
allowDeselection | property |
allowDeselection:Boolean
If true, user can deselect a renderer using the CTRL key. Only relevant if the "multipleSelection" property is false.
The default value is true
.
public function get allowDeselection():Boolean
public function set allowDeselection(value:Boolean):void
angleOffset | property |
angleOffset:Number
The angle offset to use to begin layout of the renderers. Defaults to 90 which lays out the first renderer due north of the center of the list.
The default value is 90
.
public function get angleOffset():Number
public function set angleOffset(value:Number):void
innerRadius | property |
innerRadius:Number
The radius of the donut hole to put in the wheel.
The default value is 10
.
public function get innerRadius():Number
public function set innerRadius(value:Number):void
useCircle | property |
useCircle:Boolean
If true, the wheel will be a circle by setting the radius to the smaller of the width or height.
The default value is false
.
public function get useCircle():Boolean
public function set useCircle(value:Boolean):void
useVirtualLayout | property |
useVirtualLayout:Boolean
[write-only] [override] Not virtual layout, not useful since all pie slices are visible.
The default value is false
.
public function set useVirtualLayout(value:Boolean):void
dispose | () | method |
public function dispose():void
Removes the component from the display list.
rendererHandler | () | method |
protected function rendererHandler(event:Event):void
Adds relevant listeners to each renderer.
Parameters
event:Event — The Event that triggered the handler
|
smHandler | () | method |
protected function smHandler(event:Event):void
Handles events on the systemManager.
Parameters
event:Event — The Event that triggered the handler
|