The columnHeaderHeight property (number) sets the height of the column header in pixels.
The header height is fixed.
DayPilot.Kanban.columnHeaderHeight30Increase this value if your column headers need more vertical space.
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"
<!-- ... -->
/>