Enum AggregateType
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Indicates the type of aggregation to perform.
public enum AggregateType
- Extension Methods
Fields
Avg = 0Calculates the average of values.
Count = 1Calculates the number of values.
Custom = 2Calculates the aggregate using a custom function.
Max = 3Calculates the maximum value.
Min = 4Calculates the minimum value.
Sum = 5Calculates the sum of values.