UNPKG

@syncfusion/ej2-pivotview

Version:

The pivot grid, or pivot table, is used to visualize large sets of relational data in a cross-tabular format, similar to an Excel pivot table.

33 lines (32 loc) 852 B
import { PivotCommon } from '../base/pivot-common'; import { Dialog } from '@syncfusion/ej2-popups'; /** * `ErrorDialog` module to create error dialog. */ /** @hidden */ export declare class ErrorDialog { /** @hidden */ parent: PivotCommon; /** @hidden */ errorPopUp: Dialog; /** * Constructor for the dialog action. * * @param {PivotCommon} parent - parent. * @hidden */ constructor(parent: PivotCommon); /** * Creates the error dialog for the unexpected action done. * * @function createErrorDialog * @param {string} title - title. * @param {string} description - description. * @returns {void} * @hidden */ createErrorDialog(title: string, description: string): void; private closeErrorDialog; /** @hidden */ removeErrorDialog(): void; }