DayPilot.Scheduler.businessBeginsHour

The businessBeginsHour property (number) defines the start of business hours displayed by the JavaScript Scheduler component.

Declaration

DayPilot.Scheduler.businessBeginsHour

Default Value

9

Examples

JavaScript

const dp = new DayPilot.Scheduler("dp", {
  businessBeginsHour: 7,
  // ...
});
dp.init();

Angular

<daypilot-scheduler [config]="config"></daypilot-scheduler>
config: DayPilot.SchedulerConfig = {
  businessBeginsHour: 7,
  // ...
};

React

<DayPilotScheduler
  businessBeginsHour={7}
  {/* ... */}
/>

Vue

<DayPilotScheduler
  :businessBeginsHour="7"
  <!-- ... -->
/>

See Also

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript