DayPilot.Kanban.swimlaneHeaderWidth

The swimlaneHeaderWidth property (number) sets the swim lane header width in pixels.

Declaration

DayPilot.Kanban.swimlaneHeaderWidth

Default Value

80

Notes

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

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript