The height property (number) sets the height of the active scheduling area (excluding the header) in the JavaScript Scheduler component.
DayPilot.Scheduler.heightnullThis value is used when DayPilot.Scheduler.heightSpec is set to "Fixed" or "Max". To set the full control height, use DayPilot.Scheduler.setHeight().
JavaScript
const dp = new DayPilot.Scheduler("dp", {
heightSpec: "Fixed",
height: 200,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
heightSpec: "Fixed",
height: 200,
// ...
};React
<DayPilotScheduler
heightSpec="Fixed"
height={200}
{/* ... */}
/>Vue
<DayPilotScheduler
heightSpec="Fixed"
:height="200"
<!-- ... -->
/>