Pacote | mx.charts.chartClasses |
Classe | public class DataDescription |
Herança | DataDescription Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
describeData()
method when invoked.
Propriedade | Definido por | ||
---|---|---|---|
boundedValues : Array
An Array of BoundedValue objects describing the data in the element. | DataDescription | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | 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 se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
REQUIRED_BOUNDED_VALUES : uint = 0x2 [estático]
A bitflag passed by the axis to an element's describeData() method. | DataDescription | ||
REQUIRED_MIN_INTERVAL : uint = 0x1 [estático]
A bitflag passed by the axis to an element's describeData() method. | DataDescription | ||
REQUIRED_MIN_MAX : uint = 0x4 [estático]
A bitflag passed by the axis to an element's describeData() method. | DataDescription | ||
REQUIRED_PADDING : uint = 0x8 [estático]
A bitflag passed by the axis to an element's describeData() method. | DataDescription |
boundedValues | propriedade |
public var boundedValues:Array
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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 | propriedade |
public var max:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The maximum data value displayed by the element.
min | propriedade |
public var min:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The minimum data value displayed by the element.
minInterval | propriedade |
public var minInterval:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
The minimum interval, in data units, between any two values displayed by the element.
padding | propriedade |
public var padding:Number
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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 | () | Construtor |
public function DataDescription()
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | Flash Player 9, AIR 1.1 |
Constructor.
REQUIRED_BOUNDED_VALUES | Constante |
public static const REQUIRED_BOUNDED_VALUES:uint = 0x2
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Flex 3 |
Versões de runtime: | 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.
Wed Jun 13 2018, 11:10 AM Z