Gantt APIMethodsdeleteTaskOn this pagedeleteTask Description Deletes the specified task deleteTask: (id: string | number) => voidParameters id - (required) string | number - the task's id Examplegantt.addTask({ id:10, text:"Project #1", start_date:"02-09-2013", duration:28});gantt.deleteTask(10); /*!*/Details