Hi Hamid,
Thanks for your update.
We have validated your reported query and suggest you to use below typecasting in created event to overcome the issue.
import { EJ2Instance } from '@syncfusion/ej2-angular-schedule';
onCreated(args) {
(document.querySelector('.e-schedule-toolbar') as EJ2Instance).ej2_instances[0].overflowMode = 'Scrollable';
}
If you are using resources in your scheduler, we suggest you to use dataBound event instead of created event like below sample to remove three dots . Because in resource sample, promise will be resolved slower compared to default sample.
(dataBound)='onDataBound($event)'
onDataBound(args) {
if (this.flag) {
(document.querySelector('.e-schedule-toolbar') as EJ2Instance).ej2_instances[0].overflowMode = 'Scrollable';
this.flag = false;
}
}
Kindly try with the above solutions and get back to us if you need any further assistance.
Regards,
Vinitha