The swimlaneHeaderWidth property (number) sets the swim lane header width in pixels.
Declaration
DayPilot.Kanban.swimlaneHeaderWidthDefault Value
80Notes
This value controls the width of the vertical swim lane header area used to display swim lane labels.
Examples
JavaScript
const kanban = new DayPilot.Kanban("dp", {
swimlaneHeaderWidth: 120,
// ...
});
kanban.init();Angular
<daypilot-kanban [config]="config"></daypilot-kanban>config: DayPilot.KanbanConfig = {
swimlaneHeaderWidth: 120,
// ...
};React
<DayPilotKanban
swimlaneHeaderWidth={120}
{/* ... */}
/>Vue
<DayPilotKanban
:swimlaneHeaderWidth="120"
<!-- ... -->
/>See Also
Swim Lane Loading [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot