@progress/kendo-react-pivotgrid
Version:
React PivotGrid (also called Pivot Table) can be data-bound to an OLAP service and customized extensively. KendoReact PivotGrid package
21 lines (20 loc) • 956 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { PivotGridAxisFilterFieldsExpandChangeEvent, PivotGridAxisFilterFieldExpandEvent } from '../components/AxisFilterFieldsEditor.js';
import * as React from 'react';
/**
* @hidden
*/
export interface PivotGridConfiguratorEditorEventsContextType {
onAxisFilterFieldsExpandChange?: (event: PivotGridAxisFilterFieldsExpandChangeEvent) => void;
onAxisFilterFieldExpand?: (event: PivotGridAxisFilterFieldExpandEvent) => void;
}
/**
* @hidden
*/
export declare const PivotGridConfiguratorEditorEventsContext: React.Context<PivotGridConfiguratorEditorEventsContextType>;