Defined in: features/row-aggregation/rowAggregationFeature.types.ts:264
Column instance APIs installed by rowAggregationFeature.
TFeatures extends TableFeatures
TData extends RowData
getAggregationFns: () => readonly ResolvedAggregationFn<TFeatures, TData>[];Defined in: features/row-aggregation/rowAggregationFeature.types.ts:269
Resolves the configured scalar or multiple aggregation definitions.
readonly ResolvedAggregationFn<TFeatures, TData>[]
getAggregationValue: <TResult>(options?) => TResult;Defined in: features/row-aggregation/rowAggregationFeature.types.ts:277
Aggregates this column over the default pre-grouped row model, or over a caller-provided array of rows. options.maxDepth overrides the column's maxAggregationDepth. Explicit-row calls are intentionally not cached.
TResult = ColumnAggregationValue<TFeatures>
AggregationValueOptions<TFeatures, TData>
TResult
getAutoAggregationFn: () =>
| AggregationFnDef<TFeatures, TData, any, any>
| undefined;Defined in: features/row-aggregation/rowAggregationFeature.types.ts:281
Infers sum for a numeric first row and extent for a Date first row.
| AggregationFnDef<TFeatures, TData, any, any> | undefined