From Angular, I want to update the interval property of the schedule component.
I am trying this:
@ViewChild('schedule', { static: false }) public schedule: ScheduleComponent;
...
this.schedule.setProperties({ interval: value });
But this change is not reflected, even if I do
this.schedule.refresh();
When the schedule refreshes after this, the change is successfully reflected.
What is the right way to directly update a property?