(Flex Data Visualization components only)
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The OLAPQueryAxis interface represents an axis of an OLAP query.
Show MXML Syntax
Hide MXML Syntax
The <mx:OLAPQueryAxis>
tag inherits all of the tag attributes
of its superclass, and adds the following tag attributes:
<mx:OLAPQueryAxis
Properties
/>
public var axisOrdinal:int
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The type of axis, as
OLAPQuery.COLUMN AXIS
for a column axis,
OLAPQuery.ROW_AXIS
for a row axis,
and OLAPQuery.SLICER_AXIS
for a slicer axis.
sets:Array
[read-only]
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
All the sets of the query axis, as an Array of IOLAPSet instances.
This Array includes sets added by the addMember()
and addTuple()
methods.
Implementation public function get sets():Array
tuples:Array
[read-only]
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
All the tuples added to the query axis, as an Array of IOLAPTuple instances.
This Array includes tuples added by the addMember()
and addSet()
methods.
Implementation public function get tuples():Array
public function OLAPQueryAxis(ordinal:int)
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Constructor
Parameters | ordinal:int — The type of axis.
Use OLAPQuery.COLUMN AXIS for a column axis,
OLAPQuery.ROW_AXIS for a row axis,
and OLAPQuery.SLICER_AXIS for a slicer axis.
|
public function addMember(m:IOLAPMember):void
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Adds a single member to the query axis.
The member is automatically converted to an IOLPASet instance.
This method is useful when adding a member to a slicer axis.
Parameters
public function addSet(s:IOLAPSet):void
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Adds a set to the query axis.
The set define the members and tuples that provide the information for the query axis.
Parameters
| s:IOLAPSet — The set to add to the query.
|
public function addTuple(t:mx.olap:IOLAPTuple):void
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Adds a tuple to the query axis.
The tuple is automatically converted to an IOLPASet instance.
Parameters
public function clear():void
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Clears all the sets, tuples and members from this axis.
© 2009 Adobe Systems Incorporated. All rights reserved.
Sat Oct 3 2009, 04:15 AM -07:00