Updating from 3.10 to 3.12 causes crash:
See original GitHub issueI just updated to 3.12 and now my charts are crashing with "cannot read property ‘logarithmic’ of undefined’
It seems it’s a problem in setYScaleForIndex in Scales.js. CoreUtils also looks for a ‘logarithmic’ property, but it couldn’t be causing the crash because it makes sure the object it’s checking the property on is defined. In this case, it appears the y
is undefined.
I’m unsure why this crash would occur after the update, but never happened before. Nothing in my code has changed.
Issue Analytics
- State:
- Created 4 years ago
- Comments:12 (3 by maintainers)
Top Results From Across the Web
IBM Spectrum Scale Alert: Releases 4.2.3.18 or later and 5.0 ...
IBM Spectrum Scale Alert: Releases 4.2.3.18 or later and 5.0.4.0 or later have issues resulting in kernel crashes on RHEL7.7 with kernel ...
Read more >Linux 3.10+ Driver crash - Linux - NVIDIA Developer Forums
The 3.12 Linux kernel with or without ck and nvidia 331.20 still locks up my laptop. When I say locks up I mean...
Read more >Changelog — Python 3.11.1 documentation
gh-97728: Fix possible crashes caused by the use of uninitialized variables when pass invalid arguments in os.system() on Windows and in Windows-specific ...
Read more >Cisco Prime Infrastructure 3.10.2 Release Notes
Perform an inline upgrade of existing 3.10 or 3.10 Update 01 or 3.10.1 system—See How to Perform an Inline Upgrade. Restore data from...
Read more >Crashes — Blender Manual
To prevent the problem from happening again, you can check that the graphics drivers are up to date (Graphics Hardware), upgrade your machine's...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I got a good result so that the error does not appear on the console:
Uncaught (in promise) TypeError: Cannot read property 'logarithmic' of undefined
.It’s necessary to leave a series preset with the key
data
being an empty array.Before: https://codepen.io/juliorosseti/pen/MWYzzPB?editors=1010
After: https://codepen.io/juliorosseti/pen/YzPdywb?editors=1010
I could simulate my problem in codepen, you can take a look? @junedchhipa
https://codepen.io/juliorosseti/pen/MWYzzPB?editors=1010