The visible property (boolean) controls whether the Scheduler is visible.
Declaration
DayPilot.Scheduler.visibleDefault Value
trueExamples
JavaScript
const dp = new DayPilot.Scheduler("dp", {
visible: false,
// ...
});
dp.init();Angular
<daypilot-scheduler [config]="config"></daypilot-scheduler>config: DayPilot.SchedulerConfig = {
visible: false,
// ...
};React
<DayPilotScheduler
visible={false}
{/* ... */}
/>Vue
<DayPilotScheduler
:visible="false"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot