The businessBeginsHour property (number) defines the start of business hours displayed by the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.businessBeginsHourDefault Value
9Examples
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
Business Hours [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot