DayPilot.Kanban.columnHeaderHeight

The columnHeaderHeight property (number) sets the height of the column header in pixels.

The header height is fixed.

Declaration

DayPilot.Kanban.columnHeaderHeight

Default Value

30

Notes

Increase this value if your column headers need more vertical space.

Examples

JavaScript

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

Angular

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

React

<DayPilotKanban
  columnHeaderHeight={40}
  {/* ... */}
/>

Vue

<DayPilotKanban
  :columnHeaderHeight="40"
  <!-- ... -->
/>

See Also

DayPilot.Kanban Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript