The visible property (boolean) controls whether the Kanban component is displayed.
DayPilot.Kanban.visibletrueSet this property to false to hide the component without disposing it.
JavaScript
const kanban = new DayPilot.Kanban("dp", {
visible: false,
// ...
});
kanban.init();Angular
<daypilot-kanban [config]="config"></daypilot-kanban>config: DayPilot.KanbanConfig = {
visible: false,
// ...
};React
<DayPilotKanban
visible={false}
{/* ... */}
/>Vue
<DayPilotKanban
:visible="false"
<!-- ... -->
/>Angular [doc.daypilot.org]