DayPilot.Kanban.visible

The visible property (boolean) controls whether the Kanban component is displayed.

Declaration

DayPilot.Kanban.visible

Default Value

true

Notes

Set this property to false to hide the component without disposing it.

Examples

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"
  <!-- ... -->
/>

See Also

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript