deleteColumn()
Description
Removes the specified column from datastore of Kanban
Usage
deleteColumn({ id: string | number }): void;
Parameters
id
- (required) the ID of the column to be deleted
Example
// create Kanban
const board = new kanban.Kanban("#root", {
columns,
cards
});
// remove column by its id
board.deleteColumn({ id: "backlog" });