[BUG] TypeError: Cannot read property of '_meta' of undefined
See original GitHub issueExpected Behavior
No error occurs.
Current Behavior
A linear chart is continuously updated every couple of seconds by assigning to it’s datasets and labels property before calling the update method using the following code:
const chartData = chart.data as LinearChartData;
chartData.datasets = newData;
chartData.labels = labels;
chart.update(0);
After some hours of normal behavior an exception occurs in production:
TypeError: Cannot read property '_meta' of undefined
at t.getDatasetMeta (https://localhost/vendor.bundle.js:1:236168)
at t.updateHoverStyle (https://localhost/vendor.bundle.js:1:237714)
at t.handleEvent (https://localhost/vendor.bundle.js:1:238496)
at t.eventHandler (https://localhost/vendor.bundle.js:1:237904)
at n (https://localhost/vendor.bundle.js:1:237275)
at HTMLCanvasElement.s.(anonymous function) (https://localhost/vendor.bundle.js:1:170105)
at e.invokeTask (https://localhost/polyfills.bundle.js:1:41200)
at Object.onInvokeTask (https://localhost/vendor.bundle.js:1:45060)
at e.invokeTask (https://localhost/polyfills.bundle.js:1:41121)
at r.runTask (https://localhost/polyfills.bundle.js:1:36376)
The stack trace points toward a bug inside Chart.js.
Possible Solution
Unknown.
Steps to Reproduce (for bugs)
I was unable to reproduce it in a development environment, it only happends sporadically in production after hours of usage.
Context
The chart is used inside a monitoring application based on angular and contiuously updated. It looks like an uncaught exception inside of Chart.js, which is crashing the application.
Environment
- Chart.js version: 2.6.0
- Browser name and version: 62.0.3202.94
- Angular Wrapper: ng2-charts 1.6.0
Issue Analytics
- State:
- Created 6 years ago
- Comments:17 (4 by maintainers)
Top Results From Across the Web
Cannot read property 'meta' of undefined - Stack Overflow
html:13 ERROR TypeError: Cannot read property 'meta' of undefined at Object.eval [as updateRenderer] (TournamentsComponent.html:13) at Object.
Read more >TypeError: Cannot read property 'meta' of undefined #12093
TypeError : Cannot read property 'meta' of undefined #12093 ... regardless of type specified, it crashes on the first file with the error....
Read more >FATAL: Uncaught TypeError: Cannot read property 'meta' of ...
Hi all,. I've done an upgrade to version 6.5.2.497-1.4.2-2 and in one of my dashboards i'm recieving an error message as following:.
Read more >Cannot read property 'meta' of undefined - NodeBB
Anyone know what this error means? error: TypeError: Cannot read property 'meta' of undefined at C:\Apps\nodebb\src\user\auth.js:80:16
Read more >Cannot read property 'data' of undefined - Prismic People
I always get this error whenever i try to integrate meta document. `TypeError: /Users/desartist22/Desktop/floema/views/_includes/head.pug:21
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 Free
Top 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
I also sow this issue. Try don’t use ‘filter’ for data of the chart. Replace ‘filter’ to ‘map’ and add ‘hidden: true’.
const datasets = data.map(d => ({ ...data, hidden: !d.active }));
I was able to fix it by adding the following line in node_modules/chart.js/src/core/core.controller.js
` getDatasetMeta: function(datasetIndex) {