The headerHeight property (number) sets the height of a time header row in pixels.
Declaration
DayPilot.Gantt.headerHeightDefault Value
20Examples
JavaScript
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"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot