Package | com.flexicious.components.tinycharts.valueobjects |
Class | public class BubbleSeries |
Inheritance | BubbleSeries ![]() ![]() ![]() |
Subclasses | PlotSeries |
The <mx:BubbleSeries>
tag inherits all the properties of its parent classes, and
the following properties:
maxRadius="50" minRadius="0" radiusAxis="No default" radiusField="No default"
Property | Defined By | ||
---|---|---|---|
![]() | baseAtZero : Boolean
Specifies whether Flex tries to keep the minimum
and maximum values rooted at zero. | Series | |
![]() | calculatedMinMaxSum : Array
Calculated result of the minmaxsum function. | Series | |
![]() | chart : TinyChartBase | Series | |
![]() | dataFunction : Function
Specifies a method that returns the value that should be used for
positioning the current chart item in the series. | Series | |
![]() | dataPropertyName : String
Returns the attribute on the series that returns the data field on the dataprovider. | Series | |
![]() | dataTipRenderer : IFactory
Renderer for the data tip. | Series | |
![]() | displayName : String
The name of the series, for display to the user. | Series | |
![]() | enabledFunction : Function
Given an item, returns the color for its renderer (line, or column)
| Series | |
![]() | interactive : Boolean
Determines whether data tips appear when users interact
with chart data on the screen. | Series | |
![]() | isSecondary : Boolean = false
Is this a secondary series (not used to render the axes), used
by Multi Series Charts. | Series | |
![]() | itemFillFunction : Function = null
Given an item, returns the color for its renderer (line, or column) . | Series | |
![]() | itemLineColorFunction : Function = null
Given an item, returns the color for its line (or border for its fill) . | Series | |
![]() | labelFunction : Function
Specifies a callback function used to render each label
of the Series. | Series | |
![]() | labelPropertyName : String [read-only]
Returns the attribute on the series that returns the data field on the dataprovider. | Series | |
![]() | labelStyleName : String
This is the style name applied to labels that are drawn on top of individual datapoints
For now this is supported for 3d Pie, Funnel and Pyramid Charts, since they are the only ones
that draw a label on top of the individual data points. | Series | |
maxRadius : Number = 50
The radius of the largest item renderered in this series. | BubbleSeries | ||
![]() | minMaxSumFunction : Function
PLEASE NOTE: Starting 2.10 this function is deprecated. | Series | |
![]() | minMaxSumIntervalFunction : Function
Returns an array of 4 values. | Series | |
minRadius : Number = 0
The radius of the smallest item renderered in this series. | BubbleSeries | ||
![]() | painter : TinyChartPainterBase
The painter responsible for painting the series. | Series | |
![]() | plotPoints : Array
A list of plot points we calculated to render this series
| Series | |
radiusField : String
Specifies the field of the data provider that determines the radius of each symbol, relative to the other
data points in the chart. | BubbleSeries | ||
![]() | selectable : Boolean
Specifies whether a series is selectable or not. | Series | |
![]() | selectedIndex : int
Index of the selected item in the data provider of the series. | Series | |
![]() | selectedIndices : Array
An Array of indexes of the selected items in the data provider of the series. | Series | |
![]() | selectedItem : ChartItem
The chart item that is selected in the series. | Series | |
![]() | selectedItems : Array
An Array of chart items that are selected in the series. | Series | |
![]() | seriesIndex : int = 0
The index of this series within the charts series collection. | Series | |
![]() | showDataTips : Boolean
Whether or not to show data tips on mouse over
| Series | |
![]() | useRollover : Boolean
Flag to show a different color for the bar/area that the user has rolled over. | Series | |
![]() | xField : String
Specifies the field of the data provider that determines the x-axis location of the column. | CartesianSeries | |
![]() | yField : String
Specifies the field of the data provider that determines the y-axis location of the top of a column. | CartesianSeries |
Method | Defined By | ||
---|---|---|---|
BubbleSeries | |||
![]() | calculateSteps(minValue:Number, maxValue:Number, sum:Number):Array | Series | |
![]() | defaultDataFunction(series:Series, item:Object, fieldName:String):* [static] | Series | |
![]() | getFillForLegend():IFill
Gets the fill associated with this item for this series. | Series | |
![]() | getItemFill(item:Object):IFill
First, checks to see if item is disabled, then returns disabled color style value, if one defined for the series, other wise the one defined for the chart. | Series | |
![]() | getItemLineColor(item:Object):IFill | Series | |
![]() | getLabelForLegend():String
Gets the label associated with this item for this series. | Series | |
![]() | getPlotPoint(item:Object):PlotPoint
Gets the plot point for this item in this series before this one. | Series | |
![]() |
Gets the series before this one. | Series | |
![]() | getStyleValue(prop:String):Object
If a style is defined on this series with a valid value, returns it from the series
style declaration otherwise, returns it from the chart's style declaration. | Series | |
![]() | handleMouseClick(event:MouseEvent, clickedItem:HitData):void
Handles the click. | Series |
Method | Defined By | ||
---|---|---|---|
defaultMinMaxSumFunction(series:Series):Array [override]
Returns the top and bottom for the chart scale. | BubbleSeries | ||
![]() | getFillForItem(styleProp:String, item:Object):IFill
Takes a style property, if it is an array, returns the item in the array according to the mod position of the item in the dataprovider
| Series |
maxRadius | property |
public var maxRadius:Number = 50
Language Version : | ActionScript 3.0 |
Product Version : | Flex 3 |
Runtime Versions : | Flash Player 9, AIR 1.1 |
The radius of the largest item renderered in this series. When you use a BubbleSeries object in a BubbleChart,
the chart automatically assigns its maxRadius
style value to this property
on all series in the chart. When you use BubbleSeries objects in CartesianChart controls, you manage this property manually.
minRadius | property |
public var minRadius:Number = 0
Language Version : | ActionScript 3.0 |
Product Version : | Flex 3 |
Runtime Versions : | Flash Player 9, AIR 1.1 |
The radius of the smallest item renderered in this series. When you use a BubbleSeries object in a BubbleChart, the chart automatically assigns its minRadius
style value to this property
on all series in the chart. When you use BubbleSeries objects in CartesianChart controls, you manage this property manually.
radiusField | property |
radiusField:String
Language Version : | ActionScript 3.0 |
Product Version : | Flex 3 |
Runtime Versions : | Flash Player 9, AIR 1.1 |
Specifies the field of the data provider that determines the radius of each symbol, relative to the other data points in the chart.
public function get radiusField():String
public function set radiusField(value:String):void
BubbleSeries | () | Constructor |
public function BubbleSeries()
defaultMinMaxSumFunction | () | method |
override protected function defaultMinMaxSumFunction(series:Series):Array
Returns the top and bottom for the chart scale.
Parameters
series:Series |
Array —
|