1
In your html:
...[colors]="getColors()"
In your .ts file:
getColors() {
return [{
backgroundColor: this.barChartData.map(d => d > threshold ? red : green)
}];
}
Source:stackexchange.com
1
In your html:
...[colors]="getColors()"
In your .ts file:
getColors() {
return [{
backgroundColor: this.barChartData.map(d => d > threshold ? red : green)
}];
}