(Flex Data Visualization components only)
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The OLAPResult class represents the result of a query on an OLAP cube.
axes:Array
[read-only]
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
An Array of IOLAPResultAxis instances that represent all the axes of the query.
Implementation public function get axes():Array
protected var cellData:Array
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
An Array of Arrays that contains the value of each cell of the result.
A cell is an intersection of a row and a column axis position.
public static var COLUMN_AXIS:int = 0
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Specifies a column axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
query:IOLAPQuery
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The query whose result is represented by this object.
Implementation public function get query():IOLAPQuery
public function set query(value:IOLAPQuery):void
public static var ROW_AXIS:int = 1
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Specifies a row axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
public static var SLICER_AXIS:int = 2
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Specifies a slicer axis.
Use this property as a value of the axisOrdinal
argument
to the getAxis()
method.
public function getAxis(axisOrdinal:int):IOLAPResultAxis
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns an axis of the query result.
Parameters
| axisOrdinal:int — Specify OLAPQuery.COLUMN AXIS for a column axis,
OLAPQuery.ROW_AXIS for a row axis,
and OLAPQuery.SLICER_AXIS for a slicer axis.
|
Returns public function getCell(x:int, y:int):IOLAPCell
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns a cell at the specified location in the query result.
Parameters
| x:int — The column of the query result.
|
|
| y:int — The row of the query result.
|
Returns | IOLAPCell — An IOLAPCell instance representing the cell.
|
public function hasRowData(rowIndex:int):Boolean
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Returns true
if the row contains data.
Parameters
| rowIndex:int — The index of the row in the result.
|
Returns | Boolean — true if the row contains data,
and false if not.
|
© 2009 Adobe Systems Incorporated. All rights reserved.
Sat Oct 3 2009, 04:15 AM -07:00