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
Event calendar/scheduling AJAX components. Available for JavaScript/HTML5/jQuery, ASP.NET, ASP.NET MVC. Build resource booking, project management, time tracking applications, personal and shared event calendars.
DayPilot