@progress/kendo-angular-pivotgrid
Version:
PivotGrid package for Angular
28 lines (27 loc) • 1.02 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* 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";
import { PivotGridAxis } from "@progress/kendo-pivotgrid-common";
/**
* The event data for the ExpandChangeEvent
*/
export declare class ExpandChangeEvent extends PreventableEvent {
/**
* The current row axes configuration, resulting from the end user interaction.
*/
rowAxes: PivotGridAxis[];
/**
* The current column axes configuration, resulting from the end user interaction.
*/
columnAxes: PivotGridAxis[];
/**
* The measure axes configuration.
*/
measureAxes: PivotGridAxis[];
/**
* @hidden
*/
constructor(args?: any);
}