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