The eventHeight property (number) sets the height of Scheduler event boxes, in pixels.
Declaration
DayPilot.Scheduler.eventHeightDefault Value
Since 2018.3.3417:
35Previous versions:
25Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventHeight: 30,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventHeight: 30,
// ...
};React
<DayPilotScheduler
eventHeight={30}
{/* ... */}
/>Vue
<DayPilotScheduler
:eventHeight="30"
<!-- ... -->
/>See Also
DayPilot.Scheduler.rowMarginBottom
DayPilot.Scheduler.rowMinHeight
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot