Hi David,
Thanks for your update.
To achieve your mentioned requirement, we suggest you to follow the below work-around solution by using the “navigation” client-side event. The code snippet is as follows:
<code>
<ej-schedule id="Schedule1" width="100%" height="525px" current-view="month"navigation="onNavigation">
<e-time-scale enable="false"></e-time-scale>
</ej-schedule>
</code>
<code>
function onNavigation(args) {
if (args.requestType == "viewNavigate") {
$("#Schedule1").ejSchedule({
timeScale: { enable: (args.currentView == "month") ? false : true }
});
}
}
</code>
The above code snippet switches on/off the timescale option, as per the current view.
Kindly try the above solution and revert us, if you need any further assistance on this.
Regards,
Sellakumar K