(仅限 Flex 数据可视化组件)
mx.olap
接口public interface IOLAPDimension extends IOLAPElement
实现器 OLAPDimension

IOLAPDimension 接口表示 IOLAPCube 实例中的维度。

另请参见

mx.olap.OLAPDimension


公共属性
 属性定义方
  attributes : IList
[只读 (read-only)] 此维度的属性,作为 OLAPAttribute 实例列表。
IOLAPDimension
  cube : IOLAPCube
[只读 (read-only)] 此维度所属的多维数据集。
IOLAPDimension
  defaultMember : IOLAPMember
[只读 (read-only)] 此维度的默认成员。
IOLAPDimension
 Inheriteddimension : IOLAPDimension
[只读 (read-only)] 此元素所属的维度。
IOLAPElement
 InheriteddisplayName : String
[只读 (read-only)] OLAP 元素的名称,可作为 String 显示。
IOLAPElement
  hierarchies : IList
[只读 (read-only)] 此维度的所有层次结构,作为 IOLAPHierarchy 实例列表。
IOLAPDimension
  isMeasure : Boolean
[只读 (read-only)] 如果此为保留所有测量成员的测量维度,则包含 true。
IOLAPDimension
  members : IList
[只读 (read-only)] 返回此维度的所有成员,作为 IOLAPMember 实例列表。
IOLAPDimension
 Inheritedname : String
[只读 (read-only)] OLAP 元素的名称,包含该元素的 OLAP 架构层次结构。
IOLAPElement
 InheriteduniqueName : String
[只读 (read-only)] 多维数据集中 OLAP 元素的唯一名称。
IOLAPElement
公共方法
 方法定义方
  
返回具有维度中给定名称的属性。
IOLAPDimension
  
返回具有维度中给定名称的层次结构。
IOLAPDimension
  
返回具有维度中给定名称的成员。
IOLAPDimension
属性详细信息
attributes属性
attributes:IList  [只读 (read-only)]

此维度的属性,作为 OLAPAttribute 实例列表。



实现
    public function get attributes():IList
cube属性 
cube:IOLAPCube  [只读 (read-only)]

此维度所属的多维数据集。



实现
    public function get cube():IOLAPCube
defaultMember属性 
defaultMember:IOLAPMember  [只读 (read-only)]

此维度的默认成员。



实现
    public function get defaultMember():IOLAPMember
hierarchies属性 
hierarchies:IList  [只读 (read-only)]

此维度的所有层次结构,作为 IOLAPHierarchy 实例列表。



实现
    public function get hierarchies():IList
isMeasure属性 
isMeasure:Boolean  [只读 (read-only)]

如果此为保留所有测量成员的测量维度,则包含 true



实现
    public function get isMeasure():Boolean
members属性 
members:IList  [只读 (read-only)]

返回此维度的所有成员,作为 IOLAPMember 实例列表。返回的列表可能表示远程数据,因此可以引发 ItemPendingError。



实现
    public function get members():IList
方法详细信息
findAttribute()方法
public function findAttribute(name:String):IOLAPAttribute

返回具有维度中给定名称的属性。

参数

name:String — 属性的名称。

返回
IOLAPAttribute — IOLAPAttribute 实例,用于表示属性,或者如果未找到属性则为 null。
findHierarchy()方法 
public function findHierarchy(name:String):IOLAPHierarchy

返回具有维度中给定名称的层次结构。

参数

name:String — 层次结构的名称。

返回
IOLAPHierarchy — IOLAPHierarchy 实例,表示层次结构,或者如果未找到层次结构则为 null。
findMember()方法 
public function findMember(name:String):IOLAPMember

返回具有维度中给定名称的成员。

参数

name:String — 该成员的名称。

返回
IOLAPMember — IOLAPMember 实例,表示成员,或者如果未找到成员则为 null。