@progress/kendo-angular-pivotgrid
Version:
PivotGrid package for Angular
22 lines (21 loc) • 710 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* @hidden
*/
export class PivotGridState {
columnAxes;
rowAxes;
measureAxes;
sort;
filter;
constructor(columnAxes, rowAxes, measureAxes, sort, filter) {
this.columnAxes = columnAxes;
this.rowAxes = rowAxes;
this.measureAxes = measureAxes;
this.sort = sort;
this.filter = filter;
}
}