UNPKG

@progress/kendo-angular-pivotgrid

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