@syncfusion/ej2-spreadsheet
Version:
Feature-rich JavaScript Spreadsheet (Excel) control with built-in support for selection, editing, formatting, importing and exporting to Excel
33 lines (32 loc) • 873 B
TypeScript
import { Workbook } from '../base/index';
/**
* The `WorkbookChart` module is used to handle chart action in Spreadsheet.
*/
export declare class WorkbookChart {
private parent;
/**
* Constructor for WorkbookChart module.
*
* @param {Workbook} parent - Constructor for WorkbookChart module.
*/
constructor(parent: Workbook);
private addEventListener;
private removeEventListener;
private setChartHandler;
private refreshChartSize;
private focusChartBorder;
private deleteChartColl;
private updateChartsFromSheet;
/**
* To Remove the event listeners.
*
* @returns {void} - To Remove the event listeners.
*/
destroy(): void;
/**
* Get the workbook chart module name.
*
* @returns {string} - Get the workbook chart module name.
*/
getModuleName(): string;
}