The businessEndsHour property (number) defines the end of business hours displayed by the JavaScript Scheduler component.
Declaration
DayPilot.Scheduler.businessEndsHourDefault Value
18Examples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
businessEndsHour: 20,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
businessEndsHour: 20,
// ...
};React
<DayPilotScheduler
businessEndsHour={20}
{/* ... */}
/>Vue
<DayPilotScheduler
:businessEndsHour="20"
<!-- ... -->
/>See Also
Business Hours [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot