The eventVersionHeight property (number) specifies the height of the event version box displayed by the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.eventVersionHeightDefault Value
25Examples
JavaScript
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"
<!-- ... -->
/>See Also
Event Versions [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot