Hi Konstantin,
Syncfusion Greetings.
Based on your requirement we have prepared the below sample by using the dataBound event like the below.
<template>
<div>
<div class="col-md-12 control-section">
<div class="content-wrapper">
<ejs-schedule
id="Schedule"
ref="ScheduleObj"
height="650px"
:selectedDate="selectedDate"
:eventSettings="eventSettings"
:dataBound="onDataBound"
></ejs-schedule>
</div>
</div>
</div>
</template>
onDataBound: function() {
let scheduleObj = this.$refs.ScheduleObj;
debugger;
if (["Week", "WorkWeek"].indexOf(scheduleObj.ej2Instances.currentView) > -1) {
let appointments = scheduleObj.ej2Instances.element.querySelectorAll('.e-appointment');
for(let i= 0; i < appointments.length; i++) {
appointments[i].style.width = "100%";
appointments[i].style.left = "0%";
}
}
}
Kindly try the above sample and revert us for any further assistance on this.
Regards,
Vengatesh