Contents
- Usage
- Using the Library
- Using the Themes
- Using the Demo App
- Components
- Accordion
- AnimatedImage
- AutoComplete
- AutoFitText
- BarCode
- BitmapAdjustments
- ButtonBar
- Calculator
- Calendar
- CAPTCHA
- CarouselLayout
- CarouselList
- Clocks
- Colorizer
- ColorPicker
- ColorSpacePicker
- CompassContainer
- CoverflowLayout
- CoverflowList
- CursorManager
- DatePicker
- DockingCompassContainer
- Donut Chart
- ExpandingContainer
- FieldSet
- Filters
- FlexContextMenu
- FloatPaneControlBar
- Funnel Chart
- GraphicsEditor
- Heatmap
- HtmlDragDrop
- HtmlFrame
- HtmlGeolocation
- iCalendarParser
- iCalendarRecurrence
- IconButton
- Linear Gauges
- Magnifier
- Menu and MenuBar
- MiniViewport
- PackedLayout
- PackedList
- Pane
- PopUpButton
- ProgressDisplay
- Radar
- Radial Gauge
- Rating
- ReflectionContainer
- RichTextEditor
- RotaryField
- SafariMouseWheelFix
- Scroller
- Separators
- SliderField
- Sparklines
- TabPaneNavigator
- TextInput
- TimebarContainer
- Timeline
- TimeMachineLayout
- TimeMachineList
- TimePicker
- ToggleSwitchDesktop
- TransformContainer
- TreeMap
- ViewStack
- WheelList
WheelList
Overview
A list with the renderers arranged as slices in an ellipse.
Creating the WheelList Component
The WheelList Component extends the Flex List class which means that it can be added to any container that implements IVisualElementContainer.
Using the WheelList Component
Functions the same as a Spark List.
Item Renderers
Renderers must implement IWheelListRenderer. For simplicity, extend WheelListBaseRenderer for custom renderers. Renderers control their appearance.
Layout
Virtual Layout is not supported.
Accessibility
Field can be tabbed to and opened via the SPACE key when focused.
If multiple selection is disabled via "allowMultipleSelection", use "allowDeselection" to enable de-selection of elements.
Themes & Skinning
Skins are provided the Spark, Stockholm, and London themes.
Example
See the WheelList demo application for example code.
Back To Top