The cellHeaderHeight property (number) specifies the calendar day cell header height in pixels.
Declaration
DayPilot.Month.cellHeaderHeightDefault Value
24Notes
Increase this value to add more vertical space to the header area at the top of each day cell.
Examples
JavaScript
const month = new DayPilot.Month("dp", {
cellHeaderHeight: 40,
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
cellHeaderHeight: 40,
// ...
};React
<DayPilotMonth
cellHeaderHeight={40}
{/* ... */}
/>Vue
<DayPilotMonth
:cellHeaderHeight="40"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot