DayPilot.Scheduler.eventStackingLineHeight

The eventStackingLineHeight property (number) specifies the overlap of concurrent event boxes, in percent.

Declaration

DayPilot.Scheduler.eventStackingLineHeight

Default Value

100

Notes

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]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript