DayPilot.Scheduler.groupConcurrentEventsLimit

The groupConcurrentEventsLimit property (number) specifies the minimum number of concurrent events required for a group. Groups that have fewer events than the specified limit are displayed as individual events.

Declaration

DayPilot.Scheduler.groupConcurrentEventsLimit

Default Value

1

Notes

This threshold is used together with DayPilot.Scheduler.groupConcurrentEvents.

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  groupConcurrentEvents: true,
  groupConcurrentEventsLimit: 5,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  groupConcurrentEvents: true,
  groupConcurrentEventsLimit: 5,
  // ...
};

React

<DayPilotScheduler
  groupConcurrentEvents={true}
  groupConcurrentEventsLimit={5}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :groupConcurrentEvents="true"
  :groupConcurrentEventsLimit="5"
  <!-- ... -->
/>

See Also

DayPilot.Scheduler.groupConcurrentEvents

DayPilot.Scheduler.groupBubble

Concurrent Event Groups [doc.daypilot.org]

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript