@progress/kendo-angular-pivotgrid
Version:
PivotGrid package for Angular
30 lines (29 loc) • 979 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { PreventableEvent } from "@progress/kendo-angular-common";
/**
* Represents the event data for the `expandChange` event.
*/
export class ExpandChangeEvent extends PreventableEvent {
/**
* Provides the current row axes configuration that results from user interaction.
*/
rowAxes;
/**
* Provides the current column axes configuration that results from user interaction.
*/
columnAxes;
/**
* Provides the measure axes configuration.
*/
measureAxes;
/**
* @hidden
*/
constructor(args) {
super();
Object.assign(this, args);
}
}