You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a particular path through our application that results in an error being thrown:
Uncaught (in promise) TypeError: Cannot read property '__eventTarget' of null
It seems like it happens when this vue chart is called second, after another chart is called first.
If this chart is called first before any others have been called, it works fine.
If the chart is called third or any subsequent calls, it works fine as well.
In our particular scenario, the first chart being called when the error occurs is a LineChart.
We're having a hard time debugging it because vue-charts is a bit of a black box to us and because we don't know what information to log to the console that could illuminate what's happening. If we delete the line:
:chart-events="chartEvents"
the issue goes away. So it's likely an issues with the eventBinding on the chart. Is it possible your previous bug-fix for this issue didn't fix it completely?
Thanks!
The text was updated successfully, but these errors were encountered:
Hello,
We are Vue newbies using Vue 2.1.0 and vue-charts 0.2.1.
In one of our components we have a table element, whose rows we want to be click-able:
<vue-chart
chart-type="Table"
:chart-events="chartEvents"
There's a particular path through our application that results in an error being thrown:
Uncaught (in promise) TypeError: Cannot read property '__eventTarget' of null
It seems like it happens when this vue chart is called second, after another chart is called first.
If this chart is called first before any others have been called, it works fine.
If the chart is called third or any subsequent calls, it works fine as well.
In our particular scenario, the first chart being called when the error occurs is a LineChart.
We're having a hard time debugging it because vue-charts is a bit of a black box to us and because we don't know what information to log to the console that could illuminate what's happening. If we delete the line:
:chart-events="chartEvents"
the issue goes away. So it's likely an issues with the eventBinding on the chart. Is it possible your previous bug-fix for this issue didn't fix it completely?
Thanks!
The text was updated successfully, but these errors were encountered: