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.
DayPilot.Scheduler.rowMarginBottom0JavaScript
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"
<!-- ... -->
/>DayPilot.Scheduler.rowMarginTop