We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
That when chartData changes the graph is updated
When chartData is changing it is updating the graph, but in your code are you calling chart.update() ?
For some reason i hover on the graph and it loads in a previous set of data??
I think you should init a new chart instance each time this is changed right?
The text was updated successfully, but these errors were encountered:
Closing this as i found a solution.
This seemed to work
if (self.chartData !== null) { self.chartData.labels = self.labels; self.chartData.datasets = self.dataset; self.renderChart(self.chartData, self.options); } else { self.chartData = { labels: self.labels, datasets: self.dataset }; self.renderChart(self.chartData, self.options); }
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
That when chartData changes the graph is updated
Actual Behavior
When chartData is changing it is updating the graph, but in your code are you calling chart.update() ?
For some reason i hover on the graph and it loads in a previous set of data??
I think you should init a new chart instance each time this is changed right?
Environment
The text was updated successfully, but these errors were encountered: