Use the members of this enumeration to set the value of the Aggregate property in the C1Field class.

Namespace:  C1.Web.UI.Controls.C1GridView
Assembly:  C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)

Syntax

C#
public enum AggregateEnum
Visual Basic
Public Enumeration AggregateEnum

Members

Member nameDescription
None No aggregate is calculated or displayed.
Count Count of non-empty values.
Sum Sum of numerical values.
Average Average of the numerical values.
Min Minimum value (numerical, string, or date).
Max Maximum value (numerical, string, or date).
Std Standard deviation (using formula for Sample, n-1).
StdPop Standard deviation (using formula for Population, n).
Var Variance (using formula for Sample, n-1).
VarPop Variance (using formula for Population, n).
Custom Custom value.
Percent Percent value.

See Also