The eventStackingLineHeight property (number) specifies the overlap of concurrent event boxes, in percent.
DayPilot.Scheduler.eventStackingLineHeight100Lower values increase the visual overlap of concurrent events, while 100 keeps the stacked rows at full spacing.
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"
<!-- ... -->
/>Event Stacking Line Height [doc.daypilot.org]