PivotAggregationTotalHeaderContext

Context for Pivot Aggregation Totals

TypeScript
export interface PivotAggregationTotalHeaderContext extends
Extends

BaseColumnHeaderContext

Properties

PropertyTypeDescription
aggregatedColumnIdstringId of Aggregated Column
aggregationstringAggregation function of Column
columnType'pivotAggregationTotal'Pivot Aggregation Total Column
pivotColumnIdstringId of Pivot Column
pivotKeystringKey (i.e. column value) of Pivot Column
adaptableContextanyCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

aggregatedColumnId

Id of Aggregated Column

TypeScript
aggregatedColumnId: string;
Property Value

string

aggregation

Aggregation function of Column

TypeScript
aggregation: string;
Property Value

string

columnType

Pivot Aggregation Total Column

TypeScript
columnType: 'pivotAggregationTotal';
Property Value

'pivotAggregationTotal'

pivotColumnId

Id of Pivot Column

TypeScript
pivotColumnId: string;
Property Value

string

pivotKey

Key (i.e. column value) of Pivot Column

TypeScript
pivotKey: string;
Property Value

string

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any