Pacchetto | mx.charts.chartClasses |
Classe | public class DataDescription |
Ereditarietà | DataDescription Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
describeData()
method when invoked.
Proprietà | Definito da | ||
---|---|---|---|
boundedValues : Array
An Array of BoundedValue objects describing the data in the element. | DataDescription | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | 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 |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | DataDescription | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
Restituisce la rappresentazione in formato stringa dell'oggetto specificato. | Object | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Costante | Definito da | ||
---|---|---|---|
REQUIRED_BOUNDED_VALUES : uint = 0x2 [statico]
A bitflag passed by the axis to an element's describeData() method. | DataDescription | ||
REQUIRED_MIN_INTERVAL : uint = 0x1 [statico]
A bitflag passed by the axis to an element's describeData() method. | DataDescription | ||
REQUIRED_MIN_MAX : uint = 0x4 [statico]
A bitflag passed by the axis to an element's describeData() method. | DataDescription | ||
REQUIRED_PADDING : uint = 0x8 [statico]
A bitflag passed by the axis to an element's describeData() method. | DataDescription |
boundedValues | proprietà |
public var boundedValues:Array
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni 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 | proprietà |
public var max:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The maximum data value displayed by the element.
min | proprietà |
public var min:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The minimum data value displayed by the element.
minInterval | proprietà |
public var minInterval:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The minimum interval, in data units, between any two values displayed by the element.
padding | proprietà |
public var padding:Number
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni 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 | () | Funzione di costruzione |
public function DataDescription()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor.
REQUIRED_BOUNDED_VALUES | Costante |
public static const REQUIRED_BOUNDED_VALUES:uint = 0x2
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni 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 | Costante |
public static const REQUIRED_MIN_INTERVAL:uint = 0x1
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni 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 | Costante |
public static const REQUIRED_MIN_MAX:uint = 0x4
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni 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 | Costante |
public static const REQUIRED_PADDING:uint = 0x8
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni 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.
Tue Jun 12 2018, 02:44 PM Z