The visible property (boolean) sets the visibility of the JavaScript monthly calendar component.
Declaration
DayPilot.Month.visibleDefault Value
trueExamples
JavaScript
const dp = new DayPilot.Month("dp", {
visible: false,
// ...
});
dp.init();Angular
<daypilot-month [config]="config"></daypilot-month>config: DayPilot.MonthConfig = {
visible: false,
// ...
};React
<DayPilotMonth
visible={false}
{/* ... */}
/>Vue
<DayPilotMonth
:visible="false"
<!-- ... -->
/>See Also
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot