The swimlaneHeaderWidth property (number) sets the swim lane header width in pixels.
DayPilot.Kanban.swimlaneHeaderWidth80This value controls the width of the vertical swim lane header area used to display swim lane labels.
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"
<!-- ... -->
/>Swim Lane Loading [doc.daypilot.org]