The DayPilot.Kanban constructor creates a Kanban board instance for the specified placeholder <div>.
new DayPilot.Kanban(id, [options])id (string) - ID of the placeholder <div> element.
options (DayPilot.KanbanConfig) - optional configuration object that can define columns, cards, swimlanes, properties, and event handlers.
After creating the instance, call init() to render the Kanban board.
<div id="dp"></div>
const kanban = new DayPilot.Kanban("dp", {
// ...
});
kanban.init();