Bug in accessing `chart.data.dataset[i]`
mbotsch opened this issue · 1 comments
mbotsch commented
The current version of the master branch has a bug when accessing the dataset line 191 of plugin.js
. This leads to errors on the console and does not show any error bars.
Please replace chart.data.dataset[i]
by chart.data.datasets[i]
to fix it. Or remove the whole if-clause from line 191 to line 196 (as done in develop branch).
aevangeline commented
Note : I made a PR for this - #24