패키지 | mx.olap |
클래스 | public class OLAPMeasure |
상속 | OLAPMeasure OLAPMember OLAPElement Proxy |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
기타 예제
공용 속성
속성 | 정의 주체 | ||
---|---|---|---|
aggregator : Object
The aggregation to be performed for this measure. | OLAPMeasure | ||
children : IList [읽기 전용]
The children of this member, as a list of IOLAPMember instances. | OLAPMember | ||
dataField : String
The field of the input data set that provides
the data for this OLAPMember instance. | OLAPMember | ||
dimension : IOLAPDimension [재정의]
The dimension to which this member belongs. | OLAPMember | ||
displayName : String
The name of the OLAP element, as a String, which can be used for display. | OLAPElement | ||
hierarchy : IOLAPHierarchy [읽기 전용]
The hierarchy to which this member belongs. | OLAPMember | ||
isAll : Boolean [읽기 전용]
Returns true if this is the all member of a hierarchy. | OLAPMember | ||
isMeasure : Boolean [읽기 전용]
Returns true if this member represents a measure of a dimension. | OLAPMember | ||
level : IOLAPLevel
The level to which this member belongs. | OLAPMember | ||
name : String
The name of the OLAP element that includes the OLAP schema hierarchy of the element. | OLAPElement | ||
parent : IOLAPMember
The parent of this member. | OLAPMember | ||
uniqueName : String [재정의] [읽기 전용]
The unique name of the OLAP element in the cube. | OLAPMember |
공용 메서드
메서드 | 정의 주체 | ||
---|---|---|---|
Constructor. | OLAPMeasure | ||
Returns a child of this member with the given name. | OLAPMember | ||
Returns the unique name of the element. | OLAPElement |
속성 세부 정보
aggregator | 속성 |
aggregator:Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
The aggregation to be performed for this measure.
You can use one of the following values for the property:
"SUM"
, "AVG"
, "MIN"
,
"MAX"
, or "COUNT"
.
You can also use a custom aggregator by implementing
the IOLAPCustomAggregator interface, then setting the aggregator
property to
that custom aggregator, as the following example shows:
aggregator={new CustomAgg()}
구현
public function get aggregator():Object
public function set aggregator(value:Object):void
관련 API 요소
생성자 세부 정보
OLAPMeasure | () | 생성자 |
public function OLAPMeasure(name:String = null, displayName:String = null)
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Constructor.
매개 변수name:String (default = null ) — The name of the OLAP element that includes the OLAP schema hierarchy of the element.
For example, "Time_Year", where "Year" is a level of the "Time" dimension in an OLAP schema.
| |
displayName:String (default = null ) — The name of the measure, as a String, which can be used for display.
|
Tue Jun 12 2018, 03:17 PM Z