-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Fast scroll zoom results in out of memory error #3615
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I could reproduce the issue as well. When zooming in, the memory usage skyrockets from ~200M to a whopping 1500M. NixOS 18.09, Chromium 69 Thanks @arnog |
Hi - this issue has been sitting for a while, so as part of our effort to tidy up our public repositories I'm going to close it. If it's still a concern, we'd be grateful if you could open a new issue (with a short reproducible example if appropriate) so that we can add it to our stack. Cheers - @gvwilson |
The issue still happens. I will open a new issue: #7021 |
thank you @arnog |
See https://codepen.io/arnog/pen/YgZdEZ
scrollZoom = true
andzsmooth = 'fast'
Result:
The array being created is the pixel array in which to draw the interpolated heatmap at traces/heatmap/plot.js:238
The problem seems to be that
imageWidth
andimageHeight
are used here and later in the function, perhaps instead ofcanvasW
andcanvasH
.The text was updated successfully, but these errors were encountered: