DayPilot.Kanban.swimlaneCollapsingEnabled

The swimlaneCollapsingEnabled property (boolean) enables or disables swim lane collapsing.

Declaration

DayPilot.Kanban.swimlaneCollapsingEnabled

Default Value

false

Notes

Enable this property when users should be able to collapse and expand swim lanes to reduce the visible board height.

Examples

JavaScript

const kanban = new DayPilot.Kanban("dp", {
  swimlaneCollapsingEnabled: true,
  // ...
});
kanban.init();

Angular

<daypilot-kanban [config]="config"></daypilot-kanban>
config: DayPilot.KanbanConfig = {
  swimlaneCollapsingEnabled: true,
  // ...
};

React

<DayPilotKanban
  swimlaneCollapsingEnabled={true}
  {/* ... */}
/>

Vue

<DayPilotKanban
  :swimlaneCollapsingEnabled="true"
  <!-- ... -->
/>

See Also

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript