The showWeekend property (boolean) specifies whether the monthly calendar displays Saturday and Sunday columns.
DayPilot.Month.showWeekendtrueJavaScript
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"
<!-- ... -->
/>