Paquete | mx.charts.chartClasses |
Clase | public class PolarTransform |
Herencia | PolarTransform DataTransform EventDispatcher 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 |
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.
Propiedad | Definido por | ||
---|---|---|---|
axes : Object [solo lectura]
The set of axes associated with this transform. | DataTransform | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
elements : Array
The elements that are associated with this transform. | DataTransform | ||
origin : Point [solo lectura]
The origin of the polar transform. | PolarTransform | ||
radius : Number [solo lectura]
The radius used by the transform to convert data units
to polar coordinates. | PolarTransform |
Método | Definido por | ||
---|---|---|---|
Constructor. | PolarTransform | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de 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 | ||
Distribuye un evento en el flujo del evento. | EventDispatcher | ||
Retrieves the axis instance responsible for transforming
the data dimension specified by the dimension parameter. | DataTransform | ||
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento. | EventDispatcher | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Transforms x and y coordinates relative to the DataTransform
coordinate system into a two-dimensional value in data space. | DataTransform | ||
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 | ||
Elimina un detector del objeto EventDispatcher. | EventDispatcher | ||
Assigns an axis instance to a particular dimension of the transform. | DataTransform | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Sets the width and height that the PolarTransform uses
when calculating origin and radius. | PolarTransform | ||
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 | ||
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 | ||
Devuelve el valor simple del objeto especificado. | Object | ||
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto. | EventDispatcher |
Constante | Definido por | ||
---|---|---|---|
ANGULAR_AXIS : String = "a" [estática]
A string representing the angular axis. | PolarTransform | ||
RADIAL_AXIS : String = "r" [estática]
A string representing the radial axis. | PolarTransform |
origin | propiedad |
origin:Point
[solo lectura] 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 origin of the polar transform. This point is used by associated series to convert data units to screen coordinates.
Implementación
public function get origin():Point
radius | propiedad |
PolarTransform | () | Información sobre |
public function PolarTransform()
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.
setSize | () | método |
public function setSize(width:Number, height:Number):void
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 |
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.
Parámetros
width:Number — The width, in pixels, of the PolarTransform.
| |
height:Number — The height, in pixels, of the PolarTransform.
|
transformCache | () | método |
override public function transformCache(cache:Array, aField:String, aConvertedField:String, rField:String, rConvertedField:String):void
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 |
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.
Parámetros
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 | Constante |
public static const ANGULAR_AXIS:String = "a"
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 string representing the angular axis.
RADIAL_AXIS | Constante |
public static const RADIAL_AXIS:String = "r"
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 string representing the radial axis.
Tue Jun 12 2018, 02:12 PM Z