The columnHeaderHeight property (number) sets the height of the column header in pixels.
The header height is fixed.
Declaration
DayPilot.Kanban.columnHeaderHeightDefault Value
30Notes
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
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot