Pacchetto | mx.charts.chartClasses |
Classe | public class PolarTransform |
Ereditarietà | PolarTransform DataTransform EventDispatcher Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
You typically do not need to interact with the PolarTransform object. Transforms are created automatically by the built-in chart types and are used by the series contained within to 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 | ||
origin : Point [sola lettura]
The origin of the polar transform. | PolarTransform | ||
radius : Number [sola lettura]
The radius used by the transform to convert data units
to polar coordinates. | PolarTransform |
Metodo | Definito da | ||
---|---|---|---|
Constructor. | PolarTransform | ||
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 | ||
Transforms x and y coordinates relative to the DataTransform
coordinate system into a two-dimensional value in data space. | DataTransform | ||
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 | ||
Sets the width and height that the PolarTransform uses
when calculating origin and radius. | PolarTransform | ||
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, aField:String, aConvertedField:String, rField:String, rConvertedField:String):void [override]
Maps a set of numeric values representing data to screen coordinates. | PolarTransform | ||
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 | ||
---|---|---|---|
ANGULAR_AXIS : String = "a" [statico]
A string representing the angular axis. | PolarTransform | ||
RADIAL_AXIS : String = "r" [statico]
A string representing the radial axis. | PolarTransform |
origin | proprietà |
origin:Point
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
The origin of the polar transform. This point is used by associated series to convert data units to screen coordinates.
Implementazione
public function get origin():Point
radius | proprietà |
PolarTransform | () | Funzione di costruzione |
public function PolarTransform()
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Constructor.
setSize | () | metodo |
public function setSize(width:Number, height:Number):void
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
Sets the width and height that the PolarTransform uses when calculating origin and radius. The containing chart calls this method. You should not generally call this method directly.
Parametri
width:Number — The width, in pixels, of the PolarTransform.
| |
height:Number — The height, in pixels, of the PolarTransform.
|
transformCache | () | metodo |
override public function transformCache(cache:Array, aField:String, aConvertedField:String, rField:String, rConvertedField: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
will store the converted numeric values.
| |
aField:String — The field where the data values for the x axis
can be found.
| |
aConvertedField:String — The field where the mapped x screen coordinate
will be stored.
| |
rField:String — The field where the data values for the y axis
can be found.
| |
rConvertedField:String — The field where the mapped y screen coordinate
will be stored.
|
ANGULAR_AXIS | Costante |
public static const ANGULAR_AXIS:String = "a"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
A string representing the angular axis.
RADIAL_AXIS | Costante |
public static const RADIAL_AXIS:String = "r"
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Flex 3 |
Versioni runtime: | Flash Player 9, AIR 1.1 |
A string representing the radial axis.
Tue Jun 12 2018, 02:44 PM Z