Hi,
As per https://doc.daypilot.org/scheduler/angular-performance/ it is adviced to load large sets of resources and events via the so called Direct API.
In the Angular application
this.scheduler.control.update({resources});
this.scheduler.control.update({events});
instead of
this.config.resources = resources;
this.config.events = events;
Naturally, I followed the same approach to load the links, but it does not seems to work (altought links is a property that can be passed to the config object of the update() method.
The following leave the scheduler in a weird state: resources are displayed, but events are not.
this.scheduler.control.update({links});
Using the code below with the same ‘links’ object works perfectly, leading to have the whole graph (resources, events and links rendered properly).
this.config.links = links;
Is there something to fix in the update() method of the direct API ?
Best regards,
Octave