(仅限 Flex 数据可视化组件)
mx.olap
public class OLAPSchema
继承OLAPSchema Inheritance Object
实现 IOLAPSchema

OLAPSchema 类表示 OLAP 多维数据集。

MXML 语法expanded隐藏 MXML 语法

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

  <mx:OLAPSchema
    Properties
       cubeArray=""
  />
   

默认 MXML 属性cubeArray

另请参见

mx.olap.IOLAPSchema
mx.olap.OLAPCube
Creating an OLAP schema
Creating an OLAP schema
Creating an OLAP schema
Creating an OLAP schema


公共属性
 属性定义方
 Inheritedconstructor : Object
对类对象或给定对象实例的构造函数的引用。
Object
  cubeArray : Array
[只写] 让您通过传递 IOLAPCube 实例数组来设置架构的多维数据集。
OLAPSchema
  cubes : IList
此架构已知的所有多维数据集,作为 IOLAPCube 实例列表。
OLAPSchema
 Inheritedprototype : Object
[静态] 对类或函数对象的原型对象的引用。
Object
公共方法
 方法定义方
  
从架构创建 OLAP 多维数据集。
OLAPSchema
  
返回按名称指定的多维数据集。
OLAPSchema
 Inherited
指示对象是否已经定义了指定的属性。
Object
 Inherited
指示 Object 类的实例是否在指定为参数的对象的原型链中。
Object
 Inherited
指示指定的属性是否存在、是否可枚举。
Object
 Inherited
设置循环操作动态属性的可用性。
Object
 Inherited
返回指定对象的字符串表示形式。
Object
 Inherited
返回指定对象的原始值。
Object
属性详细信息
cubeArray属性
cubeArray:Array  [只写]

让您通过传递 IOLAPCube 实例数组来设置架构的多维数据集。



实现
    public function set cubeArray(value:Array):void
cubes属性 
cubes:IList  [读写]

此架构已知的所有多维数据集,作为 IOLAPCube 实例列表。返回的列表可能表示远程数据,因此可以引发 ItemPendingError。



实现
    public function get cubes():IList
    public function set cubes(value:IList):void
方法详细信息
createCube()方法
public function createCube(name:String):IOLAPCube

从架构创建 OLAP 多维数据集。

参数

name:String — 多维数据集的名称。

返回
IOLAPCube — IOLAPCube 实例。
getCube()方法 
public function getCube(name:String):IOLAPCube

返回按名称指定的多维数据集。

参数

name:String — 多维数据集的名称。

返回
IOLAPCube — IOLAPCube 实例,或者如果一个也未找到则为 null。