Pacchetto | mx.charts.chartClasses |
Classe | public class CartesianTransform |
Ereditarietà | CartesianTransform DataTransform EventDispatcher Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
When using charts in your applications, you typically will not need to interact with the CartesianTransform object. Transforms are created automatically by the built-in chart types and used by the series contained within so that they can transform data into rendering coordinates.
Proprietà | Definito da | ||
---|---|---|---|
axes : Object [sola lettura]
The set of axes associated with this transform. | DataTransform | ||
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
elements : Array
The elements that are associated with this transform. | DataTransform | ||
pixelHeight : Number [sola scrittura]
The height of the data area that the CartesianTransform represents,
in pixels. | CartesianTransform | ||
pixelWidth : Number [sola scrittura]
The width of the data area that the CartesianTransform represents,
in pixels. | CartesianTransform |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | CartesianTransform | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | EventDispatcher | ||
Informs the DataTransform that some of the underlying data
being represented on the chart has changed. | DataTransform | ||
Collects important displayed values for all elements
associated with this data transform. | DataTransform | ||
Invia un evento nel flusso di eventi. | EventDispatcher | ||
Retrieves the axis instance responsible for transforming
the data dimension specified by the dimension parameter. | DataTransform | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | EventDispatcher | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
[override]
Transforms x and y coordinates relative to the DataTransform
coordinate system into a 2-dimensional value in data space. | CartesianTransform | ||
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 | ||
Rimuove un listener dall'oggetto EventDispatcher. | EventDispatcher | ||
Assigns an axis instance to a particular dimension of the transform. | DataTransform | ||
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 | ||
transformCache(cache:Array, xField:String, xConvertedField:String, yField:String, yConvertedField:String):void [override]
Maps a set of numeric values representing data to screen coordinates. | CartesianTransform | ||
Restituisce il valore di base dell'oggetto specificato. | Object | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | EventDispatcher |
Costante | Definito da | ||
---|---|---|---|
HORIZONTAL_AXIS : String = "h" [statico]
A String representing the horizontal axis. | CartesianTransform | ||
VERTICAL_AXIS : String = "v" [statico]
A String representing the vertical axis. | CartesianTransform |
pixelHeight | proprietà |
pixelHeight:Number
[sola scrittura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The height of the data area that the CartesianTransform represents, in pixels. The containing chart sets this property explicitly during layout. The CartesianTransform uses this property to map data values to screen coordinates.
Implementazione
public function set pixelHeight(value:Number):void
pixelWidth | proprietà |
pixelWidth:Number
[sola scrittura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The width of the data area that the CartesianTransform represents, in pixels. The containing chart sets this property explicitly during layout. The CartesianTransform uses this property to map data values to screen coordinates.
Implementazione
public function set pixelWidth(value:Number):void
CartesianTransform | () | Funzione di costruzione |
public function CartesianTransform()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor.
invertTransform | () | metodo |
override public function invertTransform(... values):Array
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Transforms x and y coordinates relative to the DataTransform coordinate system into a 2-dimensional value in data space.
Parametri
... values — The x and y positions (in that order).
|
Array — An Array containing the transformed values.
|
transformCache | () | metodo |
override public function transformCache(cache:Array, xField:String, xConvertedField:String, yField:String, yConvertedField:String):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Maps a set of numeric values representing data to screen coordinates.
This method assumes the values are all numbers,
so any non-numeric values must have been previously converted
with the mapCache()
method.
Parametri
cache:Array — An array of objects containing the data values
in their fields.
This is also where this function stores the converted numeric values.
| |
xField:String — The field where the data values for the x axis are stored.
| |
xConvertedField:String — The field where the mapped x screen coordinate
is stored.
| |
yField:String — The field where the data values for the y axis are stored.
| |
yConvertedField:String — The field where the mapped y screen coordinate
is stored.
|
HORIZONTAL_AXIS | Costante |
public static const HORIZONTAL_AXIS:String = "h"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
A String representing the horizontal axis.
VERTICAL_AXIS | Costante |
public static const VERTICAL_AXIS:String = "v"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
A String representing the vertical axis.
Tue Jun 12 2018, 02:44 PM Z