The swimlaneCollapsingEnabled property (boolean) enables or disables swim lane collapsing.
Declaration
DayPilot.Kanban.swimlaneCollapsingEnabledDefault Value
falseNotes
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
Swim Lane Collapsing [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot