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