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