Paquete | mx.charts.chartClasses |
Clase | public class DataDescription |
Herencia | DataDescription Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
describeData()
method when invoked.
Propiedad | Definido por | ||
---|---|---|---|
boundedValues : Array
An Array of BoundedValue objects describing the data in the element. | DataDescription | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
max : Number
The maximum data value displayed by the element. | DataDescription | ||
min : Number
The minimum data value displayed by the element. | DataDescription | ||
minInterval : Number
The minimum interval, in data units,
between any two values displayed by the element. | DataDescription | ||
padding : Number
The amount of padding, in data units, that the element requires
beyond its min/max values to display its full values correctly . | DataDescription |
Método | Definido por | ||
---|---|---|---|
Constructor. | DataDescription | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
REQUIRED_BOUNDED_VALUES : uint = 0x2 [estática]
A bitflag passed by the axis to an element's describeData() method. | DataDescription | ||
REQUIRED_MIN_INTERVAL : uint = 0x1 [estática]
A bitflag passed by the axis to an element's describeData() method. | DataDescription | ||
REQUIRED_MIN_MAX : uint = 0x4 [estática]
A bitflag passed by the axis to an element's describeData() method. | DataDescription | ||
REQUIRED_PADDING : uint = 0x8 [estática]
A bitflag passed by the axis to an element's describeData() method. | DataDescription |
boundedValues | propiedad |
public var boundedValues:Array
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
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 example, a ColumnSeries that needs 20 pixels above each column to display a data label.
max | propiedad |
public var max:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The maximum data value displayed by the element.
min | propiedad |
public var min:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The minimum data value displayed by the element.
minInterval | propiedad |
public var minInterval:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The minimum interval, in data units, between any two values displayed by the element.
padding | propiedad |
public var padding:Number
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
The amount of padding, in data units, that the element requires beyond its min/max values to display its full values correctly .
DataDescription | () | Información sobre |
public function DataDescription()
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Constructor.
REQUIRED_BOUNDED_VALUES | Constante |
public static const REQUIRED_BOUNDED_VALUES:uint = 0x2
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
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_INTERVAL | Constante |
public static const REQUIRED_MIN_INTERVAL:uint = 0x1
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
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_MAX | Constante |
public static const REQUIRED_MIN_MAX:uint = 0x4
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
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_PADDING | Constante |
public static const REQUIRED_PADDING:uint = 0x8
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
A bitflag passed by the axis to an element's describeData()
method.
If this flag is set, the element sets the
DescribeData.padding
property.
Tue Jun 12 2018, 02:12 PM Z