(仅限 Flex 数据可视化组件)
mx.olap
public class OLAPElement
继承OLAPElement Inheritance Proxy Inheritance Object
实现 IOLAPElement
子类 OLAPDimension, OLAPHierarchy, OLAPLevel, OLAPMember

OLAPElement 类定义为 OLAP 元素提供常用属性的基本接口。

MXML 语法expanded隐藏 MXML 语法

The <mx:OLAPElement> tag inherits all of the tag attributes of its superclass, and adds the following tag attributes:

  <mx:OLAPElement
    Properties
    dimensions=""
    name=""
  />
 
  

另请参见

mx.olap.IOLAPElement


公共属性
 属性定义方
 Inheritedconstructor : Object
对类对象或给定对象实例的构造函数的引用。
Object
  dimension : IOLAPDimension
此元素所属的维度。
OLAPElement
  displayName : String
OLAP 元素的名称,可作为 String 显示。
OLAPElement
  name : String
OLAP 元素的名称,包含该元素的 OLAP 架构层次结构。
OLAPElement
 Inheritedprototype : Object
[静态] 对类或函数对象的原型对象的引用。
Object
  uniqueName : String
[只读 (read-only)] 多维数据集中 OLAP 元素的唯一名称。
OLAPElement
公共方法
 方法定义方
  
OLAPElement(name:String = null, displayName:String = null)
构造函数
OLAPElement
 Inherited
指示对象是否已经定义了指定的属性。
Object
 Inherited
指示 Object 类的实例是否在指定为参数的对象的原型链中。
Object
 Inherited
指示指定的属性是否存在、是否可枚举。
Object
 Inherited
设置循环操作动态属性的可用性。
Object
  
返回该元素的唯一名称。
OLAPElement
 Inherited
返回指定对象的原始值。
Object
属性详细信息
dimension属性
dimension:IOLAPDimension  [读写]

此元素所属的维度。



实现
    public function get dimension():IOLAPDimension
    public function set dimension(value:IOLAPDimension):void
displayName属性 
displayName:String  [读写]

OLAP 元素的名称,可作为 String 显示。



实现
    public function get displayName():String
    public function set displayName(value:String):void
name属性 
name:String  [读写]

OLAP 元素的名称,包含该元素的 OLAP 架构层次结构。例如,“Time_Year”是 OLAP 元素的名称,其中“Year”是 OLAP 架构中“Time”维度的级别。



实现
    public function get name():String
    public function set name(value:String):void
uniqueName属性 
uniqueName:String  [只读 (read-only)]

多维数据集中 OLAP 元素的唯一名称。例如,“[Time][Year][2007]”是一个唯一名称,其中 2007 是属于“Time”维度的“Year”级别的元素名称。



实现
    public function get uniqueName():String
构造函数详细信息
OLAPElement()构造函数
public function OLAPElement(name:String = null, displayName:String = null)

构造函数

参数
name:String (default = null) — OLAP 元素的名称,包含该元素的 OLAP 架构层次结构。例如,“Time_Year”,其中“Year”是 OLAP 架构中“Time”维度的级别。
 
displayName:String (default = null) — OLAP 元素的名称,可作为 String 显示。
方法详细信息
toString()方法
public function toString():String

返回该元素的唯一名称。

返回
String — 元素的唯一名称。