With a button click, I can trigger a call to the server that returns different data with a different root - I then send it to the chart with:
.then(response => { this.#chart.data(response).render(); });
The chart rerenders and the new data is there, but i get the following error in the console:
The error is thrown as many times as there are links that need to disappear with this data switch:
Updated chart with new data:
Could you please help me figure out what exactly causes these errors? Thanks in advance.