Table of Contents

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 = 2

Arithmetic mean. Numeric columns only.

Count = 3

Number of items in the filtered set.

Custom = 6

Use the column's custom aggregate delegate.

Max = 5

Maximum comparable value.

Min = 4

Minimum comparable value.

None = 0

No aggregate is rendered for this column.

Sum = 1

Sum of every value in the column. Numeric columns only.