Skip to content

Instantly share code, notes, and snippets.

@christiannwamba
Created March 5, 2018 20:23
Show Gist options
  • Save christiannwamba/4d53d6a7f64fe65ead46d19a1567d729 to your computer and use it in GitHub Desktop.
Save christiannwamba/4d53d6a7f64fe65ead46d19a1567d729 to your computer and use it in GitHub Desktop.
## app.js
updateChartData(data) {
...
document.getElementById('price').innerHTML = data.Price;
this.chart.data.datasets.forEach(dataset => {
var currentPrice = document.getElementById('price');
var tag = currentPrice.innerHTML;
tag = data.Price;
this.flashColor(this.threshold, tag, currentPrice);
});
this.chart.update();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment