(仅限 Flex 数据可视化组件)
mx.olap
接口public interface IOLAPQueryAxis
实现器 OLAPQueryAxis

IOLAPQueryAxis 接口表示 OLAP 查询的轴。

另请参见

mx.olap.OLAPQuery
mx.olap.OLAPQueryAxis


公共属性
 属性定义方
  sets : Array
[只读 (read-only)] 查询轴的所有集,作为 IOLAPSet 实例数组。
IOLAPQueryAxis
  tuples : Array
[只读 (read-only)] 添加到查询轴的所有 tuple,作为 IOLAPTuple 实例数组。
IOLAPQueryAxis
公共方法
 方法定义方
  
将单个成员添加到查询轴中。
IOLAPQueryAxis
  
将集添加到查询轴中。
IOLAPQueryAxis
  
将 tuple 添加到查询轴中。
IOLAPQueryAxis
属性详细信息
sets属性
sets:Array  [只读 (read-only)]

查询轴的所有集,作为 IOLAPSet 实例数组。此数组包括使用 addMember()addTuple() 方法添加的集。



实现
    public function get sets():Array
tuples属性 
tuples:Array  [只读 (read-only)]

添加到查询轴的所有 tuple,作为 IOLAPTuple 实例数组。此数组包括使用 addMember()addSet() 方法添加的 tuple。



实现
    public function get tuples():Array
方法详细信息
addMember()方法
public function addMember(s:IOLAPMember):void

将单个成员添加到查询轴中。该成员会自动转换为 IOLPASet 实例。将成员添加到切片轴中时使用此方法。

参数

s:IOLAPMember — 要添加到查询中的成员。

addSet()方法 
public function addSet(s:IOLAPSet):void

将集添加到查询轴中。该集会定义为查询轴提供信息的成员和 tuple。

参数

s:IOLAPSet — 要添加到查询中的集。

addTuple()方法 
public function addTuple(t:IOLAPTuple):void

将 tuple 添加到查询轴中。tuple 会自动转换为 IOLPASet 实例。

参数

t:IOLAPTuple — 要添加到查询中的 tuple。