Thank you for contacting Syncfusion support.
We have prepared the sample to prevent click actions on weekend days and to hide the hamburger menu which can be viewed from the below link.
<Code>
create: "Oncreate",
cellClick: "cellCustom",
cellHover: "cellCustom",
appointmentWindowOpen: "cellCustom",
window.addEventListener("resize", function () {
Oncreate();
});
function Oncreate() {
var scheduleObj = $("#Schedule1").ejSchedule("instance");
if (!ej.isNullOrUndefined(scheduleObj._scheduleDrawer))
$("#Schedule1navDrawerIcon").css("display", "none");
}
function cellCustom(args) {
if (ej.isNullOrUndefined(args.appointment)) {
if (args.startTime.getDay() == 0 || args.startTime.getDay() == 6)
args.cancel = true
}
}
</Code>
Regards,
Karthigeyan