((Apenas para componentes do Flex Data Visualization))
Pacotemx.charts.chartClasses
Classepublic class DataDescrição
HerançaDataDescrição Inheritance Object

The DataDescrição structure is used by ChartElements to describe the characteristics of the data they represent to Axis objects that auto-generate values from the data represented in the chart. ChartElements displaying data should construct and return DataDescriçãos from their describeData() method when invoked.



Propriedades Públicas
 PropriedadeDefinido por
  boundedValues : Array
An Array of BoundedValue objects describing the data in the element.
DataDescrição
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  max : Number
The maximum data value displayed by the element.
DataDescrição
  min : Number
The minimum data value displayed by the element.
DataDescrição
  minInterval : Number
The minimum interval, in data units, between any two values displayed by the element.
DataDescrição
  padding : Number
The amount of padding, in data units, that the element requires beyond its min/max values to display its full values correctly .
DataDescrição
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
Métodos Públicos
 MétodoDefinido por
  
Constructor.
DataDescrição
 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
Constantes públicas
 ConstanteDefinido por
  REQUIRED_BOUNDED_VALUES : uint = 0x2
[static] A bitflag passed by the axis to an element's describeData() method.
DataDescrição
  REQUIRED_MIN_INTERVAL : uint = 0x1
[static] A bitflag passed by the axis to an element's describeData() method.
DataDescrição
  REQUIRED_MIN_MAX : uint = 0x4
[static] A bitflag passed by the axis to an element's describeData() method.
DataDescrição
  REQUIRED_PADDING : uint = 0x8
[static] A bitflag passed by the axis to an element's describeData() method.
DataDescrição
Detalhes da propriedade
boundedValuespropriedade
public var boundedValues:Array

An Array of BoundedValue objects describing the data in the element. BoundedValues are data points that have extra space reserved around the datapoint in the chart's data area. If requested, a chart element fills this property with whatever BoundedValues are necessary to ensure enough space is visible in the chart data area. For exemplo, a ColumnSeries that needs 20 pixels above each column to display a data label.

maxpropriedade 
public var max:Number

The maximum data value displayed by the element.

minpropriedade 
public var min:Number

The minimum data value displayed by the element.

minIntervalpropriedade 
public var minInterval:Number

The minimum interval, in data units, between any two values displayed by the element.

paddingpropriedade 
public var padding:Number

The amount of padding, in data units, that the element requires beyond its min/max values to display its full values correctly .

Detalhes do construtor
DataDescrição()Construtor
public function DataDescrição()

Constructor.

Detalhes da constante
REQUIRED_BOUNDED_VALUESConstante
public static const REQUIRED_BOUNDED_VALUES:uint = 0x2

A bitflag passed by the axis to an element's describeData() method. If this flag is set, the element sets the boundedValues property.

REQUIRED_MIN_INTERVALConstante 
public static const REQUIRED_MIN_INTERVAL:uint = 0x1

A bitflag passed by the axis to an element's describeData() method. If this flag is set, the element sets the minInterval property.

REQUIRED_MIN_MAXConstante 
public static const REQUIRED_MIN_MAX:uint = 0x4

A bitflag passed by the axis to an element's describeData() method. If this flag is set, the element sets the DescribeData.min and DescribeData.max properties.

REQUIRED_PADDINGConstante 
public static const REQUIRED_PADDING:uint = 0x8

A bitflag passed by the axis to an element's describeData() method. If this flag is set, the element sets the DescribeData.padding property.