PivotResultColumnHeaderContext

Context for Pivot Result Columns

TypeScript
export interface PivotResultColumnHeaderContext extends
Extends

BaseColumnHeaderContext

Properties

PropertyTypeDescription
aggregatedColumnIdstringId of Pivot Aggregated Column
aggregationstringAggregation function of Column
columnIdstringId of generated Column
columnType'pivotResultColumn'Pivot Result Column (unique intersection of PivotAggregationColumn and PivotColumn)
pivotKeysstring[]Current Pivot Keys
adaptableContextanyCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

aggregatedColumnId

Id of Pivot Aggregated Column

TypeScript
aggregatedColumnId: string;
Property Value

string

aggregation

Aggregation function of Column

TypeScript
aggregation: string;
Property Value

string

columnId

Id of generated Column

TypeScript
columnId: string;
Property Value

string

columnType

Pivot Result Column (unique intersection of PivotAggregationColumn and PivotColumn)

TypeScript
columnType: 'pivotResultColumn';
Property Value

'pivotResultColumn'

pivotKeys

Current Pivot Keys

TypeScript
pivotKeys: string[];
Property Value

string[]

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any