The height property (number) specifies the height of the calendar scrollable area (in pixels) when heightSpec is set to "Fixed".
DayPilot.Calendar.height300JavaScript
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"
<!-- ... -->
/>Height [doc.daypilot.org]