The visible property (boolean) sets the visibility of the JavaScript monthly calendar component.
DayPilot.Month.visibletrueJavaScript
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"
<!-- ... -->
/>