如何更改 angular2-highcharts 中的背景颜色?我有我的组件:
chart: any;
saveChart(chart) {
this.chart = chart;
}
constructor(
private eventManager: EventManager,
private locationService: LocationService,
private route: ActivatedRoute,
private alertService: AlertService
) {
this.options = {
title: { text: 'Senaste dygnet' },
xAxis: {
type: 'datetime',
title: {
text: 'Tid'
}
},
yAxis: {
title: {
text: 'Temperatur'
}
},
series: [{
name: 'Vattentemperatur',
data: []
}]
};
}
模板:
<chart [options]="options" (load)="saveChart($event.context)"></chart>
当我这样做时。chart.backgroundColor = "#000000"; 什么都没发生。