deleteColumn()
Description
Removes a column from the spreadsheet
info
The method finds the specified cell, selects it, removes the column where the cell is located and moves the column on the left to its position.
Usage
deleteColumn(cell: string): void;
Parameters
cell
- (required) the id of a cell that contains the name of the column that should be deleted
Example
const spreadsheet = new dhx.Spreadsheet("spreadsheet", {});
spreadsheet.parse(data);
// removes the "G" column
spreadsheet.deleteColumn("G2");
Related articles: Work with Spreadsheet