Package | mx.olap |
Interface | public interface IOLAPQueryAxis |
Implementors | OLAPQueryAxis |
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Related API Elements
Property | Defined By | ||
---|---|---|---|
sets : Array [read-only]
All the sets of the query axis, as an Array of IOLAPSet instances. | IOLAPQueryAxis | ||
tuples : Array [read-only]
All the tuples added to the query axis, as an Array of IOLAPTuple instances. | IOLAPQueryAxis |
Method | Defined By | ||
---|---|---|---|
Adds a single member to the query axis. | IOLAPQueryAxis | ||
Adds a set to the query axis. | IOLAPQueryAxis | ||
Adds a tuple to the query axis. | IOLAPQueryAxis |
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
addMember | () | method |
public function addMember(s:IOLAPMember):void
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
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
s:IOLAPMember — The member to add to the query.
|
addSet | () | method |
public function addSet(s:IOLAPSet):void
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
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.
|
addTuple | () | method |
public function addTuple(t:mx.olap:IOLAPTuple):void
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
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
t:mx.olap:IOLAPTuple — The tuple to add to the query.
|
Thu Dec 6 2018, 01:12 PM -08:00