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