Hi Harsh,
Syncfusion Greetings.
We achieved your requirement by making use of actionComplete event of our scheduler and same can be available in below link.
onActionComplete(args) {
if (this.scheduleObj.currentView === "Month") {
(this.scheduleObj.element.querySelectorAll('.e-schedule-toolbar .e-date-range')[0] as any).click();
var calendar = (this.scheduleObj.element.querySelectorAll('.e-header-calendar')[0] as any).ej2_instances[0];
// To show the dates instead of month in month view
calendar.deth = "Month";
calendar.start = "Month";
(this.scheduleObj.element.querySelectorAll('.e-schedule-toolbar .e-date-range')[0] as any).click();
}
Regards,
M.Vinitha devi