The eventVersionMargin property (number) specifies the distance between the event version box and the main event box, in pixels.
DayPilot.Scheduler.eventVersionMargin2JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventVersionMargin: 5,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventVersionMargin: 5,
// ...
};React
<DayPilotScheduler
eventVersionMargin={5}
{/* ... */}
/>Vue
<DayPilotScheduler
:eventVersionMargin="5"
<!-- ... -->
/>Event Versions [doc.daypilot.org]
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