Pakket | mx.charts.chartClasses |
Klasse | public class CartesianTransform |
Overerving | CartesianTransform DataTransform EventDispatcher Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
axes : Object [alleen-lezen]
The set of axes associated with this transform. | DataTransform | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
elements : Array
The elements that are associated with this transform. | DataTransform | ||
pixelHeight : Number [alleen-schrijven]
The height of the data area that the CartesianTransform represents,
in pixels. | CartesianTransform | ||
pixelWidth : Number [alleen-schrijven]
The width of the data area that the CartesianTransform represents,
in pixels. | CartesianTransform |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | CartesianTransform | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registreert een gebeurtenislistenerobject bij een object EventDispatcher, zodat de listener een melding van een gebeurtenis ontvangt. | 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 | ||
Verzendt een gebeurtenis naar de gebeurtenisstroom. | EventDispatcher | ||
Retrieves the axis instance responsible for transforming
the data dimension specified by the dimension parameter. | DataTransform | ||
Controleert of het object EventDispatcher listeners heeft geregistreerd voor een specifiek type gebeurtenis. | EventDispatcher | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
[overschrijven]
Transforms x and y coordinates relative to the DataTransform
coordinate system into a 2-dimensional value in data space. | CartesianTransform | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Verwijdert een listener uit het object EventDispatcher. | EventDispatcher | ||
Assigns an axis instance to a particular dimension of the transform. | DataTransform | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
transformCache(cache:Array, xField:String, xConvertedField:String, yField:String, yConvertedField:String):void [overschrijven]
Maps a set of numeric values representing data to screen coordinates. | CartesianTransform | ||
Retourneert de primitieve waarde van het opgegeven object. | Object | ||
Controleert of een gebeurtenislistener is geregistreerd bij dit object EventDispatcher of een van de voorouders voor het opgegeven type gebeurtenis. | EventDispatcher |
Constante | Gedefinieerd door | ||
---|---|---|---|
HORIZONTAL_AXIS : String = "h" [statisch]
A String representing the horizontal axis. | CartesianTransform | ||
VERTICAL_AXIS : String = "v" [statisch]
A String representing the vertical axis. | CartesianTransform |
pixelHeight | eigenschap |
pixelHeight:Number
[alleen-schrijven] Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Implementatie
public function set pixelHeight(value:Number):void
pixelWidth | eigenschap |
pixelWidth:Number
[alleen-schrijven] Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Implementatie
public function set pixelWidth(value:Number):void
CartesianTransform | () | Constructor |
public function CartesianTransform()
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Constructor.
invertTransform | () | methode |
override public function invertTransform(... values):Array
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Parameters
... values — The x and y positions (in that order).
|
Array — An Array containing the transformed values.
|
transformCache | () | methode |
override public function transformCache(cache:Array, xField:String, xConvertedField:String, yField:String, yConvertedField:String):void
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Parameters
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 | Constante |
public static const HORIZONTAL_AXIS:String = "h"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
A String representing the horizontal axis.
VERTICAL_AXIS | Constante |
public static const VERTICAL_AXIS:String = "v"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
A String representing the vertical axis.
Wed Jun 13 2018, 11:42 AM Z