((Apenas para componentes do Flex Data Visualization))
Pacotemx.olap
Classepublic class OLAPQueryAxis
HerançaOLAPQueryAxis Inheritance Object
Implementa IOLAPQueryAxis

The OLAPQueryAxis interface represents an axis of an OLAP query.

Sintaxe em MXMLexpandedHide MXML Syntax

The <mx:OLAPQueryAxis> tag inherits all of the tag attributes of its superclass, and adds the following tag attributes:

  <mx:OLAPQueryAxis
    Properties
  />
   

Veja também

mx.olap.OLAPQuery
mx.olap.IOLAPQueryAxis


Propriedades Públicas
 PropriedadeDefinido por
  axisOrdinal : int
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.
OLAPQueryAxis
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  sets : Array
[read-only] All the sets of the query axis, as an Array of IOLAPSet instances.
OLAPQueryAxis
  tuples : Array
[read-only] All the tuples added to the query axis, as an Array of IOLAPTuple instances.
OLAPQueryAxis
Métodos Públicos
 MétodoDefinido por
  
OLAPQueryAxis(ordinal:int)
Constructor
OLAPQueryAxis
  
Adds a single member to the query axis.
OLAPQueryAxis
  
Adds a set to the query axis.
OLAPQueryAxis
  
Adds a tuple to the query axis.
OLAPQueryAxis
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Detalhes da propriedade
axisOrdinalpropriedade
public var axisOrdinal:int

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.

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 construtor
OLAPQueryAxis()Construtor
public function OLAPQueryAxis(ordinal:int)

Constructor

Parâmetros
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.
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.