The rowMarginBottom property (number) specifies the height of the free space below events in each row of the JavaScript Scheduler, in pixels. See Scheduler: Row Height.
Declaration
DayPilot.Scheduler.rowMarginBottomDefault Value
0Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
rowMarginBottom: 5,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
rowMarginBottom: 5,
// ...
};React
<DayPilotScheduler
rowMarginBottom={5}
{/* ... */}
/>Vue
<DayPilotScheduler
:rowMarginBottom="5"
<!-- ... -->
/>See Also
DayPilot.Scheduler.rowMarginTop
DayPilot.Scheduler.rowMinHeight
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot