The headerHeight property (number) sets the height of a time header row in pixels.
DayPilot.Gantt.headerHeight20JavaScript
const gantt = new DayPilot.Gantt("dp", {
headerHeight: 25,
// ...
});
gantt.init();Angular
<daypilot-gantt [config]="config"></daypilot-gantt>config: DayPilot.GanttConfig = {
headerHeight: 25,
// ...
};React
<DayPilotGantt
headerHeight={25}
{/* ... */}
/>Vue
<DayPilotGantt
:headerHeight="25"
<!-- ... -->
/>