Paket | mx.charts.chartClasses |
Gränssnitt | public interface IChartElement2 extends IChartElement , IFlexDisplayObject , IBitmapDrawable , IEventDispatcher |
Implementorer | ChartElement |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Metod | Definieras med | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registrerar ett händelseavlyssnarobjekt för ett EventDispatcher-objekt så att avlyssnaren får meddelanden om händelser. | IEventDispatcher | ||
Called by the enclosing chart to indicate that the current state
of the chart has changed. | IChartElement | ||
Called by the chart to allow associated elements
to claim style selectors from its chartSeriesStyles Array. | IChartElement | ||
Called by the enclosing chart to collect any transitions
a particular element might play when the chart changes state. | IChartElement | ||
Converts a tuple of data values to an x-y coordinate on screen. | IChartElement2 | ||
Called by the governing DataTransform to obtain a description
of the data represented by this IChartElement. | IChartElement | ||
Skickar en händelse till händelseflödet. | IEventDispatcher | ||
Returns a HitData object describing the nearest data point
to the coordinates passed to the method. | IChartElement | ||
Returns an array of HitData of the items of all the underlying
objects that implement IChartElement2 whose dataTips
are to be shown when showAllDataTips is set
to true on chart. | IChartElement2 | ||
Returnerar en rektangel som definierar visningsområdets område i relation till targetCoordinateSpace-objektets koordinatsystem. | IFlexDisplayObject | ||
Returnerar en rektangel som definierar visningsområdets gräns, baserat på koordinatsystemet som definieras av targetCoordinateSpace-parametern, exklusive eventuella linjer i former. | IFlexDisplayObject | ||
Konverterar punktobjektet från scenens (globala) koordinater till visningsobjektets (lokala) koordinater. | IFlexDisplayObject | ||
Kontrollerar om EventDispatcher-objektet har några avlyssnare registrerade för en viss typ av händelse. | IEventDispatcher | ||
Utvärderar begränsningsramen för visningsobjektet för att kontrollera om den överlappar eller korsar begränsningsramen för obj-visningsobjektet. | IFlexDisplayObject | ||
Utvärderar visningsobjektet för att avgöra om det överlappar eller korsar den punkt som anges av x- och y-parametrarna. | IFlexDisplayObject | ||
Converts a coordinate on screen to a tuple of data values. | IChartElement2 | ||
Konverterar punktobjektet från visningsobjektets (lokala) koordinater till scenens (globala) koordinater. | IFlexDisplayObject | ||
Indicates to the element that the data mapping
of the associated axes has changed. | IChartElement | ||
Moves this object to the specified x and y coordinates. | IFlexDisplayObject | ||
Tar bort en avlyssnare från EventDispatcher-objektet. | IEventDispatcher | ||
Sets the actual size of this object. | IFlexDisplayObject | ||
Kontrollerar om en händelseavlyssnare är registrerad för det här EventDispatcher-objektet eller något av dess överordnade objekt för den angivna händelsetypen. | IEventDispatcher |
dataToLocal | () | metod |
public function dataToLocal(... dataValues):Point
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Converts a tuple of data values to an x-y coordinate on screen. Call this function to transform data on to the screen using the same transform that the individual elements go through. For example, to create a custom highlight for a data region of a chart, you might use this function to determine the on-screen coordinates of the range of interest.
For Cartesian chartelements, you typically pass two values. The first value maps to the horizontal axis, and the second value maps to the vertical axis.
For polar charts, the first value maps to the angular axis, and the second maps to the radial axis.
Parametrar
... dataValues — The data values to convert to coordinates.
|
Point — Coordinates that are relative to the chart.
|
getAllDataPoints | () | metod |
public function getAllDataPoints():Array
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Returns an array of HitData of the items of all the underlying
objects that implement IChartElement2
whose dataTips
are to be shown when showAllDataTips
is set
to true
on chart.
Array — The HitData objects describing the data points
|
localToData | () | metod |
public function localToData(pt:Point):Array
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Converts a coordinate on screen to a tuple of data values. Call this function to determine what data values a particular point on-screen represents.
Individual chart types determine how this transformation occurs. The point should be relative to the chart's coordinate space.
Parametrar
pt:Point — The Point to convert.
|
Array — The tuple of data values.
|
Tue Jun 12 2018, 01:40 PM Z