question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[BUG] TypeError: Cannot read property of '_meta' of undefined

See original GitHub issue

Expected 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:closed
  • Created 6 years ago
  • Comments:17 (4 by maintainers)

github_iconTop GitHub Comments

12reactions
mashaodcommented, Nov 7, 2019

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 }));

6reactions
tharunsikhinamcommented, Dec 2, 2018

I was able to fix it by adding the following line in node_modules/chart.js/src/core/core.controller.js

` getDatasetMeta: function(datasetIndex) {

		var me = this;

		var dataset = me.data.datasets[datasetIndex];
         //Start
		if(dataset===undefined)
			dataset={}
        //End
		if (!dataset._meta) {
			dataset._meta = {};
		}`
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found