The rowEmptyHeight property (number) sets the height of empty rows in pixels. If specified, the JavaScript Scheduler will use this value instead of eventHeight for empty rows.
DayPilot.Scheduler.rowEmptyHeightnullIf specified, this property overrides eventHeight for rows without events.
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowEmptyHeight: 10,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowEmptyHeight: 10,
// ...
};React
<DayPilotScheduler
rowEmptyHeight={10}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowEmptyHeight="10"
<!-- ... -->
/>