((Apenas para componentes do Flex Data Visualization))
Pacotemx.olap
Classepublic class OLAPQuery
HerançaOLAPQuery Inheritance Object
Implementa IOLAPQuery

The OLAPQuery interface represents an OLAP query that is executed on an IOLAPCube.

Sintaxe em MXMLexpandedHide MXML Syntax

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

  <mx:OLAPQuery
    Properties
       axis=""
  />
   

Default MXML Propertyaxes

Veja também

mx.olap.IOLAPQuery
mx.olap.IOLAPQueryAxis
mx.olap.OLAPQueryAxis


Propriedades Públicas
 PropriedadeDefinido por
  axes : Array
The axis of the Query as an Array of OLAPQueryAxis instances.
OLAPQuery
  COLUMN_AXIS : int = 0
[static] Specifies a column axis.
OLAPQuery
 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
  ROW_AXIS : int = 1
[static] Specifies a row axis.
OLAPQuery
  SLICER_AXIS : int = 2
[static] Specifies a slicer axis.
OLAPQuery
Métodos Públicos
 MétodoDefinido por
  
getAxis(axisOridnal:int):IOLAPQueryAxis
Gets an axis from the query.
OLAPQuery
 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
  
setAxis(axisOridnal:int, axis:IOLAPQueryAxis):void
Sets an axis to the query.
OLAPQuery
 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
axespropriedade
axes:Array  [read-write]

The axis of the Query as an Array of OLAPQueryAxis instances. A query can have three axes: column, row, and slicer.


Implementação
    public function get axes():Array
    public function set axes(value:Array):void
COLUMN_AXISpropriedade 
public static var COLUMN_AXIS:int = 0

Specifies a column axis. Use this property as a value of the axisOrdinal argument to the getAxis() method.

ROW_AXISpropriedade 
public static var ROW_AXIS:int = 1

Specifies a row axis. Use this property as a value of the axisOrdinal argument to the getAxis() method.

SLICER_AXISpropriedade 
public static var SLICER_AXIS:int = 2

Specifies a slicer axis. Use this property as a value of the axisOrdinal argument to the getAxis() method.

Detalhes do método
getAxis()método
public function getAxis(axisOridnal:int):IOLAPQueryAxis

Gets an axis from the query. You typically call this method to obtain an uninitialized IOLAPQueryAxis instance, then configure the IOLAPQueryAxis instance for the query.

Parâmetros

axisOridnal:int — Specify OLAPQuery.COLUMN AXIS for a column axis, OLAPQuery.ROW_AXIS for a row axis, and OLAPQuery.SLICER_AXIS for a slicer axis.

Retorna
IOLAPQueryAxis — The IOLAPQueryAxis instance.
setAxis()método 
public function setAxis(axisOridnal:int, axis:IOLAPQueryAxis):void

Sets an axis to the query.

Parâmetros

axisOridnal:int — Specify OLAPQuery.COLUMN AXIS for a column axis, OLAPQuery.ROW_AXIS for a row axis, and OLAPQuery.SLICER_AXIS for a slicer axis.
 
axis:IOLAPQueryAxis — The IOLAPQueryAxis instance.