Paquete | mx.charts.chartClasses |
Clase | public class RenderData |
Herencia | RenderData Object |
Subclases | AreaSeriesRenderData, BarSeriesRenderData, BubbleSeriesRenderData, ColumnSeriesRenderData, HLOCSeriesRenderData, LineSeriesRenderData, PieSeriesRenderData, PlotSeriesRenderData |
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 |
Propiedad | Definido por | ||
---|---|---|---|
bounds : Rectangle
The bounds of all of the items a series displays on screen,
relative to the series's coordinate system. | RenderData | ||
cache : Array
The list of ChartItems representing the items
in the series's dataProvider. | RenderData | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
elementBounds : Array
An Array of rectangles describing the bounds of the series's
ChartItems, relative to the series's coordinate system. | RenderData | ||
filteredCache : Array
The list of ChartItems representing the items
in the series's dataProvider that remain after filtering. | RenderData | ||
length : uint [solo lectura]
The number of items represented in this render data. | RenderData | ||
visibleRegion : Rectangle
The rectangle describing the possible coordinate range
that a series can display on screen. | RenderData |
Método | Definido por | ||
---|---|---|---|
Constructor. | RenderData | ||
Creates a copy of the render data. | RenderData | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
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 | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
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 | ||
Devuelve el valor simple del objeto especificado. | Object |
bounds | propiedad |
public var bounds:Rectangle
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 bounds of all of the items a series displays on screen,
relative to the series's coordinate system.
This value is used by the various effects during rendering.
A series fills in this value when the effect
calls the getElementBounds()
method.
A series does not need to fill in this field
unless specifically requested.
cache | propiedad |
public var cache: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 |
The list of ChartItems representing the items
in the series's dataProvider
.
elementBounds | propiedad |
public var elementBounds: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 |
An Array of rectangles describing the bounds of the series's
ChartItems, relative to the series's coordinate system.
Effects use this Array
to generate the effect rendering.
An effect calls the getElementBounds()
method, which
causes the series to fill in this value.
A series does not need to fill in this field
unless specifically requested.
Effects modify this Array to relect current positions
of the items during the effect duration.
If this value is filled in on the series's renderData
,
the series renders itself based on these rectangles
rather than from the series's data.
filteredCache | propiedad |
public var filteredCache: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 |
The list of ChartItems representing the items
in the series's dataProvider
that remain after filtering.
length | propiedad |
visibleRegion | propiedad |
public var visibleRegion:Rectangle
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 rectangle describing the possible coordinate range
that a series can display on screen.
This value is used by the various effects during rendering.
An effect calls the getElementBounds()
method
to fill in this value.
A series does not need to fill in this field
unless specifically requested.
If left null
, effects assume the visible region of an element
is the bounding box of the element itself (0, 0, width, height),
expressed relative to the element.
RenderData | () | Información sobre |
public function RenderData(cache:Array = null, filteredCache:Array = null)
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.
Parámetroscache:Array (default = null ) — The list of ChartItems representing the items
in the series's dataProvider .
| |
filteredCache:Array (default = null ) — The list of ChartItems representing the items
in the series's dataProvider that remain after filtering.
|
clone | () | método |
public function clone():RenderData
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 |
Creates a copy of the render data. In the new copy, properties that point to other objects continue to point to the same objects as the original.
If you subclass this class, you must override this method.
Valor devueltoRenderData — The new copy of the RenderData object.
|
Tue Jun 12 2018, 02:12 PM Z