Paquete | mx.charts.chartClasses |
Interfaz | public interface IChartElement2 extends IChartElement , IFlexDisplayObject , IBitmapDrawable , IEventDispatcher |
Implementadores | ChartElement |
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 |
Método | Definido por | ||
---|---|---|---|
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. | 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 | ||
Distribuye un evento en el flujo del evento. | 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 | ||
Devuelve un rectángulo que define el área del objeto de visualización relativo al sistema de coordenadas del objeto targetCoordinateSpace. | IFlexDisplayObject | ||
Devuelve un rectángulo que define el límite del objeto de visualización, basado en el sistema de coordenadas definido por el parámetro targetCoordinateSpace, excluyendo los trazos en las formas. | IFlexDisplayObject | ||
Convierte el objeto point de las coordenadas del escenario (globales) en las coordenadas del objeto de visualización (locales). | IFlexDisplayObject | ||
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento. | IEventDispatcher | ||
Calcula el cuadro delimitador del objeto de visualización para ver si se solapa o corta con el cuadro delimitador del objeto de visualización obj. | IFlexDisplayObject | ||
Evalúa el objeto de visualización para comprobar si se solapa o presenta un punto de intersección con el punto especificado por los parámetros x e y. | IFlexDisplayObject | ||
Converts a coordinate on screen to a tuple of data values. | IChartElement2 | ||
Convierte el objeto point de coordenadas del objeto de visualización (locales) en coordenadas del escenario (globales). | 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 | ||
Elimina un detector del objeto EventDispatcher. | IEventDispatcher | ||
Sets the actual size of this object. | IFlexDisplayObject | ||
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto. | IEventDispatcher |
dataToLocal | () | método |
public function dataToLocal(... dataValues):Point
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 |
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.
Parámetros
... dataValues — The data values to convert to coordinates.
|
Point — Coordinates that are relative to the chart.
|
getAllDataPoints | () | método |
public function getAllDataPoints():Array
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 |
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 | () | método |
public function localToData(pt:Point):Array
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 |
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.
Parámetros
pt:Point — The Point to convert.
|
Array — The tuple of data values.
|
Tue Jun 12 2018, 02:12 PM Z