You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When resizing a window while a plot is not visible, plotly logs this error.
To fix this you can add this test in onResize() (the same check as in plotly that triggers this error):
let e = window.getComputedStyle(graph).display;
if ( !e || "none" === e) return;
I don't know if this has an impact on the onResize() functionality.
JaFF92, j2kenton, lorenz068, iroman91, matthewfieger and 2 more