ComponentOne GridView for ASP.NET WebForms
C1.Web.Wijmo.Controls.4 Assembly / C1.Web.Wijmo.Controls.C1GridView Namespace / Aggregate Enumeration

In This Topic
    Aggregate Enumeration
    In This Topic
    Use the members of this enumeration to set the value of the C1Field.Aggregate property.
    Syntax
    'Declaration
     
    Public Enum Aggregate 
       Inherits System.Enum
    public enum Aggregate : System.Enum 
    Members
    MemberDescription
    AverageAverage of the numerical values.
    CountCount of non-empty values.
    CustomCustom value (causing grid to throw the C1GridView.OnClientGroupAggregate event).
    MaxMaximum value (numerical, string, or date).
    MinMinimum value (numerical, string, or date).
    NoneNo aggregate is calculated or displayed.
    StdStandard deviation (using formula for Sample, n-1).
    StdPopStandard deviation (using formula for Population, n).
    SumSum of numerical values.
    VarVariance (using formula for Sample, n-1).
    VarPopVariance (using formula for Population, n).
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Web.Wijmo.Controls.C1GridView.Aggregate

    See Also