Enum AggregateFunction
- Namespace
- BlazOrbit.Components
- Assembly
- BlazOrbit.dll
Aggregation function rendered for a column in the data-collection footer. Aggregates run against the post-filter, pre-pagination set so totals reflect the full filtered result rather than just the visible page.
public enum AggregateFunction
Fields
Average = 2Arithmetic mean. Numeric columns only.
Count = 3Number of items in the filtered set.
Custom = 6Use the column's custom aggregate delegate.
Max = 5Maximum comparable value.
Min = 4Minimum comparable value.
None = 0No aggregate is rendered for this column.
Sum = 1Sum of every value in the column. Numeric columns only.