Clears all the sets, tuples and members from this axis.
OLAPQueryAxis
Property Detail
axisOrdinal
property
public var axisOrdinal:int
Language Version :
ActionScript 3.0
Product Version :
Flex 3
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
property
sets:Array [read-only]
Language Version :
ActionScript 3.0
Product Version :
Flex 3
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
property
tuples:Array [read-only]
Language Version :
ActionScript 3.0
Product Version :
Flex 3
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
Constructor Detail
OLAPQueryAxis
()
Constructor
public function OLAPQueryAxis(ordinal:int)
Language Version :
ActionScript 3.0
Product Version :
Flex 3
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.
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.