Properties

dimensionInit: CustomEvent<IgcPivotDimension>

Emitted when the dimension is initialized.

Remarks

Emits the dimension that is about to be initialized.

Example

<igx-pivot-grid #grid [data]="localData" [height]="'305px'"
(dimensionInit)="dimensionInit($event)"></igx-pivot-grid>
dimensionsChange: CustomEvent<IgcDimensionsChange>

Emitted when the dimension collection is changed via the grid chip area.

Remarks

Returns the new dimension collection and its type:

Example

<igx-pivot-grid #grid [data]="localData" [height]="'305px'"
(dimensionsChange)="dimensionsChange($event)"></igx-grid>
dimensionsSortingExpressionsChange: CustomEvent<IgcSortingExpression[]>

Emitted when a dimension is sorted.

Example

<igx-pivot-grid #grid [data]="localData" [height]="'305px'"
(dimensionsSortingExpressionsChange)="dimensionsSortingExpressionsChange($event)"></igx-pivot-grid>
pivotConfigurationChange: CustomEvent<IgcPivotConfigurationChangedEventArgs>

Emitted when any of the pivotConfiguration properties is changed via the grid chip area.

Example

<igx-pivot-grid #grid [data]="localData" [height]="'305px'"
(pivotConfigurationChanged)="configurationChanged($event)"></igx-grid>
valueInit: CustomEvent<IgcPivotValue>

Emitted when the value is initialized.

Remarks

Emits the value that is about to be initialized.

Example

<igx-pivot-grid #grid [data]="localData" [height]="'305px'"
(valueInit)="valueInit($event)"></igx-pivot-grid>
valuesChange: CustomEvent<IgcValuesChange>

Emitted when the values collection is changed via the grid chip area.

Remarks

Returns the new dimension

Example

<igx-pivot-grid #grid [data]="localData" [height]="'305px'"
(valuesChange)="valuesChange($event)"></igx-grid>