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