DayPilot.Scheduler.visible

The visible property (boolean) controls whether the Scheduler is visible.

Declaration

DayPilot.Scheduler.visible

Default Value

true

Examples

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

DayPilot.Scheduler Class

Availability

Availability of this API item in DayPilot editions:

LitePro
DayPilot for JavaScript