UNPKG

@progress/kendo-angular-pivotgrid

Version:
38 lines (37 loc) 1.09 kB
/**----------------------------------------------------------------------------------------- * 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"; /** * The event data for the ConfigurationChangeEvent */ export class ConfigurationChangeEvent extends PreventableEvent { /** * The current row axes configuration, resulting from the end user interaction. */ rowAxes; /** * The current column axes configuration, resulting from the end user interaction. */ columnAxes; /** * The measure axes configuration. */ measureAxes; /** * The sorting configuration. */ sort; /** * The filtering configuration. */ filter; /** * @hidden */ constructor(args) { super(); Object.assign(this, args); } }