Overlap Control

Overlap control

Reject drops, resizes and creations that would collide with another event.

With [eventOverlap]="false" a move, resize or creation whose time range intersects another event is rejected: the operation simply does not commit, and the rejection is announced to assistive technologies. In the resource view only events of the same resource collide.

Aug 10 – 16, 2026
10 Mon
11 Tue
12 Wed
13 Thu
14 Fri
15 Sat
16 Sun
08:00
09:00
10:00
11:00
12:00
13:00
14:00
15:00
09:00 AM – 10:30 AM
Fixed meeting
12:00 PM – 01:00 PM
Try to drop me on it
ts
import { Component } from '@angular/core'
import { SchedulerComponent } from '@coreui/angular-scheduler'

const pad = (n: number) => String(n).padStart(2, '0')
const day = (offset: number) => {
  const date = new Date()
  date.setDate(date.getDate() - ((date.getDay() + 6) % 7) + offset)
  return `${date.getFullYear()}-${pad(date.getMonth() + 1)}-${pad(date.getDate())}`
}

@Component({
  selector: 'docs-scheduler-overlap-example',
  imports: [SchedulerComponent],
  template: `
    <c-scheduler
      [dayStartHour]="8"
      [dayEndHour]="16"
      [eventOverlap]="false"
      [events]="events"
    />
  `
})
export class SchedulerOverlapExample {
  readonly events = [
    {
 id: 'a', title: 'Fixed meeting', start: `${day(1)}T09:00`, end: `${day(1)}T10:30`
},
    {
 id: 'b', title: 'Try to drop me on it', start: `${day(1)}T12:00`, end: `${day(1)}T13:00`, color: '#f9b115'
}
  ]
}

All-day events never participate in collision checks.