Package | org.axiis.charts.groupings |
Class | public class PlotGroup |
Inheritance | PlotGroup ![]() ![]() ![]() ![]() |
Implements | mx.binding.IBindingClient |
Property | Defined By | ||
---|---|---|---|
![]() | bounds : Rectangle
A rectangle that acts as the bounding area for this layout
| AbstractLayout | |
![]() | buttonMode : Boolean = false
The value of the buttonMode flag to set for each child Sprite
| BaseLayout | |
![]() | childSprites : Array [read-only]
The AxiisSprites this layout has created to render each item in its dataProvider. | AbstractLayout | |
![]() | currentDatum : * [read-only]
The item in the dataProvider that the layout is currently rendering. | AbstractLayout | |
![]() | currentIndex : int [read-only]
The index of the item in the dataProvider that the layout is
currently rendering. | AbstractLayout | |
![]() | currentLabel : String [read-only]
The label of the item in the dataProvider that the layout is
currently rendering, as determine by taking currentDatum[labelField],
if a labelField is defined. | AbstractLayout | |
![]() | currentReference : Geometry [read-only]
The geometry that is being used to render the current data item as it
appears after the necessary iterations of the referenceRepeater have
been executed. | AbstractLayout | |
![]() | currentValue : * [read-only]
The value of the item in the dataProvider that the layout is
currently rendering, as determined by taking currentDatum[dataField],
if a dataField is defined. | AbstractLayout | |
![]() | dataField : Object
The property within each item in the dataProvider that contains the
field used to determine the value of the item. | AbstractLayout | |
![]() | dataFilterFunction : Function
This provides a way to further refine a layouts dataProvider by
providing access to a custom filter data filter function. | AbstractLayout | |
![]() | dataFilterIndex : Number [read-only] | AbstractLayout | |
![]() | dataItems : Array [read-only]
An array of objects extracted from the dataProvider. | AbstractLayout | |
![]() | dataProvider : Object
An Array, ArrayCollection, or Object containing the data this layout
should render. | AbstractLayout | |
![]() | dataTipAnchorPoint : Object
An Object with x and y values used to determine the location of anchored data tips. | AbstractLayout | |
![]() | dataTipContentClass : IFactory
A ClassFactory that creates the UIComponent that should be used in the data tip for this AxiisSprite. | AbstractLayout | |
![]() | dataTipContentComponent : UIComponent
A component that gets passed to any data tip. | AbstractLayout | |
![]() | dataTipLabelFunction : Function
A method used to determine the text that appears in the data tip for
an item rendered by this layout. | AbstractLayout | |
![]() | dataTipManager : IDataTipManager
The IDataTipManager responsible for laying out data tips for children of this layout. | AbstractLayout | |
defaultRadius : Number The default radius to use when radiusField is not specified | PlotGroup | ||
![]() | drawingGeometries : Array
An array of geometries that should be drawn for each item in the data
provider. | AbstractLayout | |
![]() | fills : Array
A placeholder for fills used within this layout. | AbstractLayout | |
![]() | height : Number
The height of the layout. | AbstractLayout | |
highlightStroke : SolidStroke The stroke applied to the highlight at the center of each circle. | PlotGroup | ||
horizontalField : String The name of the property on the items in the dataProvider that contains
the value that should be rendered along the horizontal axis. | PlotGroup | ||
horizontalScale : LinearScale The scale used to translate data values to the layout's coordinate space
in the horizontal direction. | PlotGroup | ||
![]() | inheritParentBounds : Boolean = true
Whether or not the drawingGeometries should should have their initial
bounds set to the currentReference of the parent layout. | BaseLayout | |
![]() | itemCount : int [read-only]
The number of items in the dataProvider. | AbstractLayout | |
![]() | labelField : Object
The property within each item in the dataProvider that contains the
field used to determine the label for the item. | AbstractLayout | |
![]() | layouts : Array
The layouts that should be displayed within this layout. | AbstractLayout | |
markerGeometry : Geometry
The geometry rendered at the center of each circle. | PlotGroup | ||
![]() | msPerRenderFrame : Number = 50
Determines how long (milliseconds) a layout will spend on a given frame to render X number of datums
| AbstractLayout | |
![]() | name : String
A string used to identify this layout. | AbstractLayout | |
![]() | palettes : Array
A placeholder for palettes used within this layout. | AbstractLayout | |
![]() | parentLayout : AbstractLayout
A reference to the layout that contains this layout. | AbstractLayout | |
plotFill : IGraphicsFill
The fill applied to the circles. | PlotGroup | ||
plotStroke : IGraphicsStroke
The stroke applied to the circles. | PlotGroup | ||
radiusField : String The name of the property on the items in the dataProvider that contains
the value that should used to determine the radius of each circle. | PlotGroup | ||
radiusScale : LogScale The scale used to convert data values to radii. | PlotGroup | ||
![]() | referenceRepeater : GeometryRepeater
A GeometryRepeater that will be applied to the drawingGeometries once
for each item in the dataProvider. | AbstractLayout | |
![]() | rendering : Boolean [read-only]
Whether or not this layout is currently in a render cycle. | AbstractLayout | |
![]() | scaleFill : Boolean
Whether or not the fills in this geometry should be scaled within the
bounds rectangle. | BaseLayout | |
![]() | showDataTips : Boolean
A flag that indicates to DataCanvas that it should listen for mouse
events that signal the need to create a data tip. | AbstractLayout | |
showMarker : Boolean Whether or not markers should be displayed at each data point | PlotGroup | ||
![]() | states : Array
An array of states that should be applied to this layout. | AbstractLayout | |
![]() | strokes : Array
A placeholder for strokes used within this layout. | AbstractLayout | |
![]() | useHandCursor : Boolean = false
The value of the useHandCursor flag to set each child Sprite
| BaseLayout | |
verticalField : String The name of the property on the items in the dataProvider that contains
the value that should be rendered along the vertical axis. | PlotGroup | ||
verticalScale : LinearScale The scale used to translate data values to the layout's coordinate space
in the vertical direction. | PlotGroup | ||
![]() | visible : Boolean
Whether or not this layout is visible. | AbstractLayout | |
![]() | width : Number
The width of the layout. | AbstractLayout | |
![]() | x : Number
The horizontal position of the top left corner of this layout within
its parent. | AbstractLayout | |
![]() | y : Number
The vertical position of the top left corner of this layout within
its parent. | AbstractLayout |
Method | Defined By | ||
---|---|---|---|
PlotGroup | |||
![]() | getProperty(obj:Object, propertyName:Object):*
Uses ObjectUtils.getProperty(this,obj,propertyName) to get a property on an object. | AbstractLayout | |
![]() | getSprite(owner:DataCanvas):Sprite
Returns the Sprite associated with this layout if owner is
in fact the owner of this layout. | AbstractLayout | |
![]() | invalidate():void
Notifies the DataCanvas that this layout needs to be rendered. | AbstractLayout | |
![]() | invalidateDataProvider():void
Iterates over the items in the dataProvider and stores them in
dataItems. | AbstractLayout | |
![]() | registerOwner(dataCanvas:DataCanvas):void
Registers a DisplayObject as the owner of this layout. | AbstractLayout | |
![]() | render(newSprite:AxiisSprite = null):void
Draws this layout to the specified AxiisSprite, tracking all changes
made by data binding or the referenceRepeater. | BaseLayout |
defaultRadius | property |
public var defaultRadius:Number
The default radius to use when radiusField is not specified
This property can be used as the source for data binding.
highlightStroke | property |
public var highlightStroke:SolidStroke
The stroke applied to the highlight at the center of each circle.
This property can be used as the source for data binding.
horizontalField | property |
public var horizontalField:String
The name of the property on the items in the dataProvider that contains the value that should be rendered along the horizontal axis.
This property can be used as the source for data binding.
horizontalScale | property |
public var horizontalScale:LinearScale
The scale used to translate data values to the layout's coordinate space in the horizontal direction.
This property can be used as the source for data binding.
markerGeometry | property |
public var markerGeometry:Geometry
The geometry rendered at the center of each circle.
This property can be used as the source for data binding.
plotFill | property |
public var plotFill:IGraphicsFill
The fill applied to the circles.
This property can be used as the source for data binding.
plotStroke | property |
public var plotStroke:IGraphicsStroke
The stroke applied to the circles.
This property can be used as the source for data binding.
radiusField | property |
public var radiusField:String
The name of the property on the items in the dataProvider that contains the value that should used to determine the radius of each circle.
This property can be used as the source for data binding.
radiusScale | property |
public var radiusScale:LogScale
The scale used to convert data values to radii.
This property can be used as the source for data binding.
showMarker | property |
public var showMarker:Boolean
Whether or not markers should be displayed at each data point
This property can be used as the source for data binding.
verticalField | property |
public var verticalField:String
The name of the property on the items in the dataProvider that contains the value that should be rendered along the vertical axis.
This property can be used as the source for data binding.
verticalScale | property |
public var verticalScale:LinearScale
The scale used to translate data values to the layout's coordinate space in the vertical direction.
This property can be used as the source for data binding.
PlotGroup | () | Constructor |
public function PlotGroup()