Chartjs-ChartJS doesn't show graphs on iphone/ipad

0👍

That is because you use an old version of IOS where the resize observer is available. Chart.js V3 uses this so you will either need to polyfill it or use V2 to show the charts.

Here is a pollyfill for the resize observer: https://github.com/juggle/resize-observer.

For more information you can see this github issue

Leave a comment