(Flex Data Visualization components only)
Packagemx.olap
Interfacepublic interface IOLAPSchema
Implementors OLAPSchema

The IOLAPSchema interface represents the OLAP schema.

See also

mx.olap.OLAPSchema


Public Properties
 PropertyDefined By
  cubes : IList
[read-only] All the cubes known by this schema, as a list of IOLAPCube instances.
IOLAPSchema
Public Methods
 MethodDefined By
  
Creates an OLAP cube from the schema.
IOLAPSchema
  
Returns a cube specified by name.
IOLAPSchema
Property Detail
cubesproperty
cubes:IList  [read-only]

All the cubes known by this schema, as a list of IOLAPCube instances. The returned list might represent remote data and therefore can throw an ItemPendingError.



Implementation
    public function get cubes():IList
Method Detail
createCube()method
public function createCube(name:String):IOLAPCube

Creates an OLAP cube from the schema.

Parameters

name:String — The name of the cube.

Returns
IOLAPCube — The IOLAPCube instance.
getCube()method 
public function getCube(name:String):IOLAPCube

Returns a cube specified by name.

Parameters

name:String — The name of the cube.

Returns
IOLAPCube — The IOLAPCube instance, or null if one is not found.