/**----------------------------------------------------------------------------------------- * Copyright © 2026 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[]; }