UNPKG

@progress/kendo-angular-pivotgrid

Version:
19 lines (18 loc) 674 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { PivotDataItem } from "@progress/kendo-pivotgrid-common"; /** * Represents the event data for `dataLoaded` event. */ export interface PivotDataRowItem { /** * Provides the row hierarchy. */ row: string[]; /** * Provides the aggregated cell data. */ cells: PivotDataItem[]; }