Timeline view - Auto update timeline

When scheduler timeline is opened in browser, the current events has to be refreshed at five minute interval.

EX : I have a event started at 11:00 AM and it is not completed.
I’m opening screen in browser at 11:30 AM, so in timeline the event will be between 11:00 AM - 11:30 AM.
When current time becomes 11:35 AM, the event has to be updated in timeline accordingly, between 11:00 AM - 11:45 AM.

I do not want to reload data or call server method to do this.

Is there any configuration which will fulfill my requirement?

Hello,

You don’t need to reload data and call server.
To implement it in browser, set new value of the end_date property and update the specified event by updateEvent method when current time is changed.

scheduler.getEvent(eventId).end_date= new_value; //changes event’s data scheduler.updateEvent(eventId); // renders the updated event