KnownFunction
Enum
The predefined mathematical functions known to data component's aggregate API.
Definition
Namespace:Telerik.Maui.Controls.Data
Assembly:Telerik.Maui.Controls.dll
Syntax:
C#
public enum KnownFunction
Fields
The AVERAGE function.
C#
Average = 3
The COUNT function.
C#
Count = 4
The MAXIMUM function.
C#
Max = 2
The MINIMUM function.
C#
Min = 1
The PRODUCT function.
C#
Product = 5
The STANDARD DEVIATION, based on a sample function.
C#
StdDev = 6
The STANDARD DEVIATION, based on the entire population function.
C#
StdDevP = 7
The SUM function.
C#
Sum = 0
The VARIANCE, based on a sample function.
C#
Var = 8
The VARIANCE, based on the entire population function.
C#
VarP = 9