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
rendering the chart initially works fine but when i change the data and do a chart.update()
my chart goes from looking like this:
to this:
here's a snippet of code i'm running:
this.chart.data.labels = this.model.get('labels'); this.chart.data.datasets = this.model.get('datasets').map((dataset, index) => assign({ label: dataset.label, data: dataset.data, }, colors[index])); this.chart.update();
The text was updated successfully, but these errors were encountered:
Can you please create a JSFiddle demoing this. I have some ideas on what the issue might be.
Sorry, something went wrong.
https://jsfiddle.net/fdfru161/2/
@davis I found this issue. See #1755
Closing since #1755 was merged
No branches or pull requests
rendering the chart initially works fine but when i change the data and do a chart.update()
my chart goes from looking like this:
to this:
here's a snippet of code i'm running:
The text was updated successfully, but these errors were encountered: