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

IOLAPHierarchy 接口表示 OLAP 架构的维度中用户定义的层次结构。

另请参见

mx.olap.OLAPHierarchy


公共属性
 属性定义方
  allMemberName : String
[只读 (read-only)] 层次结构的所有成员的名称。
IOLAPHierarchy
  children : IList
[只读 (read-only)] 所有成员的子级别,作为 IOLAPMember 实例列表。
IOLAPHierarchy
  defaultMember : IOLAPMember
[只读 (read-only)] 层次结构的默认成员。
IOLAPHierarchy
 Inheriteddimension : IOLAPDimension
[只读 (read-only)] 此元素所属的维度。
IOLAPElement
 InheriteddisplayName : String
[只读 (read-only)] OLAP 元素的名称,可作为 String 显示。
IOLAPElement
  hasAll : Boolean
[只读 (read-only)] 指定层次结构是否具有所有成员,如果具有,则为 true,否则为 false。
IOLAPHierarchy
  levels : IList
[只读 (read-only)] 此层次机构的所有级别,作为 IOLAPLevel 实例列表。
IOLAPHierarchy
  members : IList
[只读 (read-only)] 属于此层次结构的所有级别的所有成员,作为 IOLAPMember 实例列表。
IOLAPHierarchy
 Inheritedname : String
[只读 (read-only)] OLAP 元素的名称,包含该元素的 OLAP 架构层次结构。
IOLAPElement
 InheriteduniqueName : String
[只读 (read-only)] 多维数据集中 OLAP 元素的唯一名称。
IOLAPElement
公共方法
 方法定义方
  
返回层次结构中具有给定名称的级别。
IOLAPHierarchy
  
返回层次结构中具有给定名称的成员。
IOLAPHierarchy
属性详细信息
allMemberName属性
allMemberName:String  [只读 (read-only)]

层次结构的所有成员的名称。

默认值为 "(All)".



实现
    public function get allMemberName():String
children属性 
children:IList  [只读 (read-only)]

所有成员的子级别,作为 IOLAPMember 实例列表。



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

层次结构的默认成员。如果使用所需成员的层次机构,则需要使用默认成员。



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

指定层次结构是否具有所有成员,如果具有,则为 true,否则为 false。如果为 true,则所有成员名称由 allMemberName 属性指定。

默认值为 true.



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

此层次机构的所有级别,作为 IOLAPLevel 实例列表。返回的列表可能表示远程数据,因此可以引发 ItemPendingError。



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

属于此层次结构的所有级别的所有成员,作为 IOLAPMember 实例列表。返回的列表可能表示远程数据,因此可以引发 ItemPendingError。



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

返回层次结构中具有给定名称的级别。

参数

name:String — 级别的名称。

返回
IOLAPLevel — IOLAPLevel 实例,表示级别,或者如果未找到级别则为 null。
findMember()方法 
public function findMember(name:String):IOLAPMember

返回层次结构中具有给定名称的成员。

参数

name:String — 该成员的名称。

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