Pakket | mx.charts.chartClasses |
Klasse | public class RenderData |
Overerving | RenderData Object |
Subklassen | AreaSeriesRenderData, BarSeriesRenderData, BubbleSeriesRenderData, ColumnSeriesRenderData, HLOCSeriesRenderData, LineSeriesRenderData, PieSeriesRenderData, PlotSeriesRenderData |
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
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
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | 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 [alleen-lezen]
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 |
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | RenderData | ||
Creates a copy of the render data. | RenderData | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
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 | ||
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 | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
bounds | eigenschap |
public var bounds:Rectangle
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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 | eigenschap |
public var cache:Array
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The list of ChartItems representing the items
in the series's dataProvider
.
elementBounds | eigenschap |
public var elementBounds:Array
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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 | eigenschap |
public var filteredCache:Array
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
The list of ChartItems representing the items
in the series's dataProvider
that remain after filtering.
length | eigenschap |
visibleRegion | eigenschap |
public var visibleRegion:Rectangle
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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 | () | Constructor |
public function RenderData(cache:Array = null, filteredCache:Array = null)
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | Flash Player 9, AIR 1.1 |
Constructor.
Parameterscache: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 | () | methode |
public function clone():RenderData
Taalversie: | ActionScript 3.0 |
Productversie: | Flex 3 |
Runtimeversies: | 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.
Geretourneerde waardeRenderData — The new copy of the RenderData object.
|
Wed Jun 13 2018, 11:42 AM Z