((Apenas para componentes do Flex Data Visualization))
Pacotemx.olap
Classepublic class OLAPMeasure
HerançaOLAPMeasure Inheritance OLAPMember Inheritance OLAPElement Inheritance Proxy Inheritance Object

The OLAPMeasure class represents a member of the measure dimension of an OLAP cube.



Propriedades Públicas
 PropriedadeDefinido por
  aggregator : Object
The aggregation to be performed for this measure.
OLAPMeasure
 Inheritedchildren : IList
[read-only]
OLAPMember
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
 InheriteddataField : String
The field of the input data set that provides the data for this OLAPMember instance.
OLAPMember
 Inheriteddimension : IOLAPDimension
The dimension to which this member belongs.
OLAPMember
 InheriteddisplayName : String
OLAPElement
 Inheritedhierarchy : IOLAPHierarchy
[read-only]
OLAPMember
 InheritedisAll : Boolean
[read-only]
OLAPMember
 InheritedisMeasure : Boolean
[read-only]
OLAPMember
 Inheritedlevel : IOLAPLevel
OLAPMember
 Inheritedname : String
OLAPElement
 Inheritedparent : IOLAPMember
OLAPMember
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
 InheriteduniqueName : String
[read-only]
OLAPMember
Métodos Públicos
 MétodoDefinido por
  
OLAPMeasure(name:String = null, displayName:String = null)
Constructor.
OLAPMeasure
 Inherited
OLAPMember
 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 unique name of the element.
OLAPElement
 Inherited
Returns the primitive value of the specified object.
Object
Detalhes da propriedade
aggregatorpropriedade
aggregator:Object  [read-write]

The aggregation to be performed for this measure. You can use one of the following values for the property: "SUM", "AVG", "MIN", "MAX", or "COUNT".

You can also use a custom aggregator by implementing the IOLAPCustomAggregator interface, then setting the aggregator property to that custom aggregator, as the following exemplo shows:

aggregator={new CustomAgg()}


Implementação
    public function get aggregator():Object
    public function set aggregator(value:Object):void

Veja também

Detalhes do construtor
OLAPMeasure()Construtor
public function OLAPMeasure(name:String = null, displayName:String = null)

Constructor.

Parâmetros
name:String (default = null) — The name of the OLAP element that includes the OLAP schema hierarchy of the element. For exemplo, "Time_Year", where "Year" is a level of the "Time" dimension in an OLAP schema.
 
displayName:String (default = null) — The name of the measure, as a String, which can be used for display.