Gantt APIMethodsdeleteCalendarOn this pagedeleteCalendar Description Deletes a task calendar by its id deleteCalendar: (id: string | number) => voidParameters id - (required) string | number - the id of the calendar Example// adding a calendargantt.addCalendar({ id:"custom", worktime: { hours: [8, 17], days: [ 1, 1, 1, 1, 1, 1 ,1] }});// deleting a calendargantt.deleteCalendar("custom");Detailsadded in version 4.2Related API addCalendar createCalendar Related Guides Work Time Calculation