The businessBeginsHour property (number) sets the start of the business hours displayed by the JavaScript Calendar component.
DayPilot.Calendar.businessBeginsHour9JavaScript
const calendar = new DayPilot.Calendar("dp", {
businessBeginsHour: 8,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
businessBeginsHour: 8,
// ...
};React
<DayPilotCalendar
businessBeginsHour={8}
{/* ... */}
/>Vue
<DayPilotCalendar
:businessBeginsHour="8"
<!-- ... -->
/>Business Hours [doc.daypilot.org]