패키지 | mx.charts.chartClasses |
클래스 | public class RenderData |
상속 | RenderData Object |
하위 클래스 | AreaSeriesRenderData, BarSeriesRenderData, BubbleSeriesRenderData, ColumnSeriesRenderData, HLOCSeriesRenderData, LineSeriesRenderData, PieSeriesRenderData, PlotSeriesRenderData |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
속성 | 정의 주체 | ||
---|---|---|---|
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
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | 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 [읽기 전용]
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 |
메서드 | 정의 주체 | ||
---|---|---|---|
Constructor. | RenderData | ||
Creates a copy of the render data. | RenderData | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
bounds | 속성 |
public var bounds:Rectangle
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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 | 속성 |
public var cache:Array
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
The list of ChartItems representing the items
in the series's dataProvider
.
elementBounds | 속성 |
public var elementBounds:Array
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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 | 속성 |
public var filteredCache:Array
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
The list of ChartItems representing the items
in the series's dataProvider
that remain after filtering.
length | 속성 |
visibleRegion | 속성 |
public var visibleRegion:Rectangle
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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 | () | 생성자 |
public function RenderData(cache:Array = null, filteredCache:Array = null)
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Constructor.
매개 변수cache: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 | () | 메서드 |
public function clone():RenderData
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | 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.
반환값RenderData — The new copy of the RenderData object.
|
Tue Jun 12 2018, 03:17 PM Z