DayPilot.Scheduler.startDate

The startDate property sets the beginning of the range displayed by the JavaScript Scheduler component.

In addition to a DayPilot.Date object, it also accepts a string in ISO 8601 format ("2026-01-01T00:00:00"). 

See Also

Default Value

DayPilot.Date.today()

Examples

Using DayPilot.Date object:

{
  startDate: DayPilot.Date.today().addDays(5)
}

Using date string:

{
  startDate: "2026-01-01"
}

Using date/time string:

{
  startDate: "2026-01-01T00:00:00"
}