@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.
43 lines (42 loc) • 1.05 kB
TypeScript
import { PivotView } from '../base/pivotview';
import { ExcelExportProperties } from '@syncfusion/ej2-grids';
/**
* @hidden
* `ExcelExport` module is used to handle the Excel export action.
*/
export declare class ExcelExport {
private parent;
private engine;
private rows;
private actualrCnt;
/**
* Constructor for the PivotGrid Excel Export module.
*
* @param {PivotView} parent - Instance of pivot table.
* @hidden
*/
constructor(parent?: PivotView);
/**
* For internal use only - Get the module name.
*
* @returns {string} - string.
* @private
*/
protected getModuleName(): string;
private addHeaderAndFooter;
/**
*
* Method to perform excel export.
*
* @hidden
*/
exportToExcel(type: string, exportProperties?: ExcelExportProperties, isBlob?: boolean): void;
private updateOlapPageSettings;
/**
* To destroy the excel export module
*
* @returns {void}
* @hidden
*/
destroy(): void;
}