패키지 | mx.charts.chartClasses |
클래스 | public class PolarTransform |
상속 | PolarTransform DataTransform EventDispatcher Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
You typically do not need to interact with the PolarTransform object. Transforms are created automatically by the built-in chart types and are used by the series contained within to transform data into rendering coordinates.
속성 | 정의 주체 | ||
---|---|---|---|
axes : Object [읽기 전용]
The set of axes associated with this transform. | DataTransform | ||
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
elements : Array
The elements that are associated with this transform. | DataTransform | ||
origin : Point [읽기 전용]
The origin of the polar transform. | PolarTransform | ||
radius : Number [읽기 전용]
The radius used by the transform to convert data units
to polar coordinates. | PolarTransform |
메서드 | 정의 주체 | ||
---|---|---|---|
Constructor. | PolarTransform | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
리스너에서 이벤트 알림을 받을 수 있도록 EventDispatcher 객체에 이벤트 리스너 객체를 등록합니다. | EventDispatcher | ||
Informs the DataTransform that some of the underlying data
being represented on the chart has changed. | DataTransform | ||
Collects important displayed values for all elements
associated with this data transform. | DataTransform | ||
이벤트를 이벤트 흐름으로 전달합니다. | EventDispatcher | ||
Retrieves the axis instance responsible for transforming
the data dimension specified by the dimension parameter. | DataTransform | ||
EventDispatcher 객체에 특정 유형의 이벤트에 대한 리스너가 등록되어 있는지 여부를 확인합니다. | EventDispatcher | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Transforms x and y coordinates relative to the DataTransform
coordinate system into a two-dimensional value in data space. | DataTransform | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
EventDispatcher 객체에서 리스너를 제거합니다. | EventDispatcher | ||
Assigns an axis instance to a particular dimension of the transform. | DataTransform | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
Sets the width and height that the PolarTransform uses
when calculating origin and radius. | PolarTransform | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
transformCache(cache:Array, aField:String, aConvertedField:String, rField:String, rConvertedField:String):void [재정의]
Maps a set of numeric values representing data to screen coordinates. | PolarTransform | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object | ||
이 EventDispatcher 객체 또는 조상 객체에 지정한 이벤트 유형에 대한 이벤트 리스너가 등록되어 있는지 여부를 확인합니다. | EventDispatcher |
상수 | 정의 주체 | ||
---|---|---|---|
ANGULAR_AXIS : String = "a" [정적]
A string representing the angular axis. | PolarTransform | ||
RADIAL_AXIS : String = "r" [정적]
A string representing the radial axis. | PolarTransform |
origin | 속성 |
radius | 속성 |
PolarTransform | () | 생성자 |
public function PolarTransform()
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Constructor.
setSize | () | 메서드 |
public function setSize(width:Number, height:Number):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Sets the width and height that the PolarTransform uses when calculating origin and radius. The containing chart calls this method. You should not generally call this method directly.
매개 변수
width:Number — The width, in pixels, of the PolarTransform.
| |
height:Number — The height, in pixels, of the PolarTransform.
|
transformCache | () | 메서드 |
override public function transformCache(cache:Array, aField:String, aConvertedField:String, rField:String, rConvertedField:String):void
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Maps a set of numeric values representing data to screen coordinates.
This method assumes the values are all numbers,
so any non-numeric values must have been previously converted
with the mapCache()
method.
매개 변수
cache:Array — An array of objects containing the data values
in their fields. This is also where this function
will store the converted numeric values.
| |
aField:String — The field where the data values for the x axis
can be found.
| |
aConvertedField:String — The field where the mapped x screen coordinate
will be stored.
| |
rField:String — The field where the data values for the y axis
can be found.
| |
rConvertedField:String — The field where the mapped y screen coordinate
will be stored.
|
ANGULAR_AXIS | 상수 |
public static const ANGULAR_AXIS:String = "a"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
A string representing the angular axis.
RADIAL_AXIS | 상수 |
public static const RADIAL_AXIS:String = "r"
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
A string representing the radial axis.
Tue Jun 12 2018, 03:17 PM Z