I included four ngx-charts in a template, two pie-charts and two line-charts. Data are fed by async pipes for all of them. Since we need to keep these data up-to-date, a new "results" list is pushed into each async pipe every 5 seconds.
The first line-chart receives a single-series as defined in the documentation, while the second one receives a multi-series. The multi-series contains about 10 single series with 20 key-value pairs each.
Everything works fine right away, but the line-charts cause the web-app to freeze after 10 to 20 minutes. Sometimes the app recovers in a few seconds, but sometimes it crashes (white screen, endless wait). No error is displayed on the console and we can't spot any network or memory usage anomalies. The same happens with area-charts, while having only pie-charts works fine. Has anyone experienced this type of malfunction?
Thanks!