The eventStackingLineHeight property (number) specifies the overlap of concurrent event boxes, in percent.
Declaration
DayPilot.Scheduler.eventStackingLineHeightDefault Value
100Notes
Lower values increase the visual overlap of concurrent events, while 100 keeps the stacked rows at full spacing.
Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
eventStackingLineHeight: 50,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
eventStackingLineHeight: 50,
// ...
};React
<DayPilotScheduler
eventStackingLineHeight={50}
{/* ... */}
/>Vue
<DayPilotScheduler
:eventStackingLineHeight="50"
<!-- ... -->
/>See Also
Event Stacking Line Height [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot