The headerHeight property (number) specifies the height of the day-of-week header in pixels.
Declaration
DayPilot.Month.headerHeightDefault Value
30Examples
JavaScript
const dp = new DayPilot.Month("dp", {
headerHeight: 40,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
headerHeight: 40,
// ...
};React
<DayPilotMonth
headerHeight={40}
{/* ... */}
/>Vue
<DayPilotMonth
:headerHeight="40"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot