Pakket | mx.charts.chartClasses |
Klasse | public class PolarTransform |
Overerving | PolarTransform DataTransform EventDispatcher Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
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 | ||
origin : Point [alleen-lezen]
The origin of the polar transform. | PolarTransform | ||
radius : Number [alleen-lezen]
The radius used by the transform to convert data units
to polar coordinates. | PolarTransform |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | PolarTransform | ||
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 | ||
Transforms x and y coordinates relative to the DataTransform
coordinate system into a two-dimensional value in data space. | DataTransform | ||
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 | ||
Sets the width and height that the PolarTransform uses
when calculating origin and radius. | PolarTransform | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
transformCache(cache:Array, aField:String, aConvertedField:String, rField:String, rConvertedField:String):void [overschrijven]
Maps a set of numeric values representing data to screen coordinates. | PolarTransform | ||
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 | ||
---|---|---|---|
ANGULAR_AXIS : String = "a" [statisch]
A string representing the angular axis. | PolarTransform | ||
RADIAL_AXIS : String = "r" [statisch]
A string representing the radial axis. | PolarTransform |
origin | eigenschap |
radius | eigenschap |
PolarTransform | () | Constructor |
public function PolarTransform()
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Constructor.
setSize | () | methode |
public function setSize(width:Number, height:Number):void
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Parameters
width:Number — The width, in pixels, of the PolarTransform.
| |
height:Number — The height, in pixels, of the PolarTransform.
|
transformCache | () | methode |
override public function transformCache(cache:Array, aField:String, aConvertedField:String, rField:String, rConvertedField: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
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"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
A string representing the angular axis.
RADIAL_AXIS | Constante |
public static const RADIAL_AXIS:String = "r"
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
A string representing the radial axis.
Wed Jun 13 2018, 11:42 AM Z