The headerHeight property (number) specifies the height of a JavaScript Scheduler time header row in pixels.
Declaration
DayPilot.Scheduler.headerHeightDefault Value
Since 2018.3.3417 release:
30Previous versions:
20Notes
You can override this global value for individual time header rows.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
headerHeight: 25,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
headerHeight: 25,
// ...
};React
<DayPilotScheduler
headerHeight={25}
{/* ... */}
/>Vue
<DayPilotScheduler
:headerHeight="25"
<!-- ... -->
/>See Also
DayPilot.Scheduler.timeHeaders
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot