Packageorg.axiis.data
Classpublic class DataGroup
InheritanceDataGroup Inheritance mx.collections.ArrayCollection

This class is supports the DataSet class for aggregation and grouping operations and should not be instantiated externally

Default MXML Propertysource



Public Properties
 PropertyDefined By
  groupedData : DataGroup
Child groups that may exist within this unique record
DataGroup
  groupName : String
Used to store the name of the group.
DataGroup
  name : String
Used to store the unique value within its given group.
DataGroup
  parent : Object
The parent DataGroup, if one exists
DataGroup
  sourceData : Object
The data that was being used to create this group
DataGroup
  sums : Object
Stores the sum aggregations for the group.
DataGroup
Public Methods
 MethodDefined By
  
Constructor
DataGroup
Property Detail
groupedDataproperty
public var groupedData:DataGroup

Child groups that may exist within this unique record

groupNameproperty 
public var groupName:String

Used to store the name of the group. i.e. "Fruit"

nameproperty 
public var name:String

Used to store the unique value within its given group. i.e. "Apple" or "Pear"

parentproperty 
public var parent:Object

The parent DataGroup, if one exists

sourceDataproperty 
public var sourceData:Object

The data that was being used to create this group

sumsproperty 
public var sums:Object

Stores the sum aggregations for the group. note: Eventually we will support additional aggregation types like min/max/avg/std

Constructor Detail
DataGroup()Constructor
public function DataGroup()

Constructor