The height property (number) specifies the height of the calendar scrollable area (in pixels) when heightSpec is set to "Fixed".
Declaration
DayPilot.Calendar.heightDefault Value
300Examples
JavaScript
const calendar = new DayPilot.Calendar("dp", {
height: 400,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
height: 400,
// ...
};React
<DayPilotCalendar
height={400}
{/* ... */}
/>Vue
<DayPilotCalendar
:height="400"
<!-- ... -->
/>See Also
Height [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot