RangeError: Maximum call stack size exceeded #478
Replies: 7 comments
-
Vue is trying to observe the chart instance and that collides with the proxies chart uses internally. If you need something observable, it should be the data and / or config, depending what can change. The instance should not be observed. |
Beta Was this translation helpful? Give feedback.
-
I got same error in html+javascript page. Registered Plugins:
If I remove annotationPlugin from register function, does not show any error. Also this error comes after sometimes like 2-5 minutes later. Stack on Firefox:
Google Chrome Stack Error: Maximum call stack size error. |
Beta Was this translation helpful? Give feedback.
-
Do you have a reproducable example with codesanbox for example @husmen73? |
Beta Was this translation helpful? Give feedback.
-
Hi! I am facing the same issue Here is a very quickly pulled sandbox example, but the issue is demonstrated nonetheless https://codesandbox.io/s/tender-dust-r2mu4?file=/src/components/Chart.vue:0-1813 |
Beta Was this translation helpful? Give feedback.
-
You should not include the chart instance in the |
Beta Was this translation helpful? Give feedback.
-
Should have read more carefully, that was it. Thanks! |
Beta Was this translation helpful? Give feedback.
-
I'm following the instructions here and I got the below error as soon as the graph is plotted. It only happens when I enable this package. I also get the error even though I have no
annotation
property in the config. The graph still plots but this error is thrown along with it. My function is attached after the stack trace.Beta Was this translation helpful? Give feedback.
All reactions