AggregatorFunctions Enumeration | 
 
            The in-memory aggregators supported by the application.
            
 
    Namespace: 
   Dundas.BI.Data
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
Syntax[FlagsAttribute]
[GlobalizedEnumAttribute("EC04F56F-AAD2-4395-BCB3-35F5B1D0C8F1", "GS_Data_Enum_")]
public enum AggregatorFunctions<FlagsAttribute>
<GlobalizedEnumAttribute("EC04F56F-AAD2-4395-BCB3-35F5B1D0C8F1", "GS_Data_Enum_")>
Public Enumeration AggregatorFunctions[FlagsAttribute]
[GlobalizedEnumAttribute(L"EC04F56F-AAD2-4395-BCB3-35F5B1D0C8F1", L"GS_Data_Enum_")]
public enum class AggregatorFunctions
[<FlagsAttribute>]
[<GlobalizedEnumAttribute("EC04F56F-AAD2-4395-BCB3-35F5B1D0C8F1", "GS_Data_Enum_")>]
type AggregatorFunctions
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | None | 0 | 
            The supported aggregators values are not set.
             | 
 | Provider | 1 | 
            The aggregator functions are immutable and set by the provider.
             | 
 | Sum | 2 | 
            The measure values are added up.
             | 
 | Average | 4 | 
            The measure values are averaged.
             | 
 | Minimum | 8 | 
            The minimum measure value.
             | 
 | Maximum | 16 | 
            The maximum measure value.
             | 
 | Count | 32 | 
            The number of measure values.
             | 
 | DistinctCount | 64 | 
            The number of distinct values.
             | 
 | Median | 128 | 
            The median value.
             | 
 | ModeMax | 256 | 
            The mode value, or the largest mode value for multi-modal series.
             | 
 | ModeMin | 512 | 
            The mode value, or the smallest mode value for multi-modal series.
             | 
 | AllNonProvider | 1022 | All non provider aggregator functions. | 
See Also