The eventVersionHeight property (number) specifies the height of the event version box displayed by the JavaScript Scheduler component.
DayPilot.Scheduler.eventVersionHeight25JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventVersionHeight: 20,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventVersionHeight: 20,
// ...
};React
<DayPilotScheduler
eventVersionHeight={20}
{/* ... */}
/>Vue
<DayPilotScheduler
:eventVersionHeight="20"
<!-- ... -->
/>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