((Apenas para componentes do Flex Data Visualization))
Pacotemx.charts.chartClasses
Classepublic class BoundedValue
HerançaBoundedValue Inheritance Object

A bounded value is used to represent a datapoint that a chart element intends to render on screen. ChartElements report BoundedValues describing their data to an Axis object that the axis computes autogenerated ranges. A BoundedValue encapsulates both the value of the datapoint in a particualr dimension, as well as a margin, in pixels, that a ChartElement needs above or below the value in order to render it. Plots on a plot chart, for exemplo, report their data with margins to accomodate the size of the plots. A column chart might report a margin in the Y axis to accomodate a label rendered above the chart.



Propriedades Públicas
 PropriedadeDefinido por
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  lowerMargin : Number
The margin, in pixels, required below the value in order to render properly.
BoundedValue
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  upperMargin : Number
The margin, in pixels, required above the value in order to render properly.
BoundedValue
  value : Number
The value to be rendered.
BoundedValue
Métodos Públicos
 MétodoDefinido por
  
BoundedValue(value:Number, lowerMargin:Number = 0, upperMargin:Number = 0)
Constructor.
BoundedValue
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Detalhes da propriedade
lowerMarginpropriedade
public var lowerMargin:Number

The margin, in pixels, required below the value in order to render properly.

upperMarginpropriedade 
public var upperMargin:Number

The margin, in pixels, required above the value in order to render properly.

valuepropriedade 
public var value:Number

The value to be rendered.

Detalhes do construtor
BoundedValue()Construtor
public function BoundedValue(value:Number, lowerMargin:Number = 0, upperMargin:Number = 0)

Constructor.

Parâmetros
value:Number — The value to be rendered.
 
lowerMargin:Number (default = 0) — The lower margin.
 
upperMargin:Number (default = 0) — The upper margin.