Skip to main content

Aggregates

Aggregates are mathematical operations we perform on the leaf nodes within a tree, that we want to display on the branch rows of a tree.

Typically, aggregrates are used to display sums or counts of values, we support the following types:

Aggregate TypeValueDescription
Sum1Sum of values in field of child
Average2Average of a numerical value
Count3Count of distint values (can be used in non numerics)
High4Math.max(column)
Low5Math.min(column)
Distinct6Concatenates distinct column values, comma separated

Below is a sample of the UI with a sum aggregate on the filled quantity and quantity columns.

Aggregates