((Apenas para componentes do Flex Data Visualization))
Pacotemx.olap
Interfacepublic interface IOLAPQueryAxis
ImplementorsOLAPQueryAxis

The IOLAPQueryAxis interface represents an axis of an OLAP query.

Veja também

mx.olap.OLAPQuery
mx.olap.OLAPQueryAxis


Propriedades Públicas
 PropriedadeDefinido por
  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
Métodos Públicos
 MétodoDefinido por
  
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
Detalhes da propriedade
setspropriedade
sets:Array  [read-only]

All the sets of the query axis, as an Array of IOLAPSet instances. This Array includes sets added by the addMember() and addTuple() methods.


Implementação
    public function get sets():Array
tuplespropriedade 
tuples:Array  [read-only]

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.


Implementação
    public function get tuples():Array
Detalhes do método
addMember()método
public function addMember(s:IOLAPMember):void

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.

Parâmetros

s:IOLAPMember — The member to add to the query.

addSet()método 
public function addSet(s:IOLAPSet):void

Adds a set to the query axis. The set define the members and tuples that provide the information for the query axis.

Parâmetros

s:IOLAPSet — The set to add to the query.

addTuple()método 
public function addTuple(t:IOLAPTuple):void

Adds a tuple to the query axis. The tuple is automatically converted to an IOLPASet instance.

Parâmetros

t:IOLAPTuple — The tuple to add to the query.