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.
Declaration
DayPilot.Scheduler.rowEmptyHeightDefault Value
nullNotes
If specified, this property overrides eventHeight for rows without events.
Examples
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"
<!-- ... -->
/>See Also
DayPilot.Scheduler.eventHeight
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot