The heightSpec property (string) specifies the height and grid scrolling mode of the JavaScript Monthly Calendar component.
DayPilot.Month.heightSpec"Auto"Possible values:
"Fixed"
"Auto"
"Parent100Pct"
The related Height documentation covers Month height behavior in general.
JavaScript
const month = new DayPilot.Month("dp", {
heightSpec: "Parent100Pct",
// ...
});
month.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
heightSpec: "Parent100Pct",
// ...
};React
<DayPilotMonth
heightSpec="Parent100Pct"
{/* ... */}
/>Vue
<DayPilotMonth
heightSpec="Parent100Pct"
<!-- ... -->
/>Height [doc.daypilot.org]