要解决Angular 9中ChartJs在数据更新后未能更新视图的问题,你可以尝试以下几个步骤:
import { Chart } from 'chart.js';
export class YourComponent {
chart: Chart;
}
import { AfterViewInit, Component, ViewChild, ElementRef } from '@angular/core';
export class YourComponent implements AfterViewInit {
@ViewChild('chartCanvas', { static: true }) chartCanvas: ElementRef;
ngAfterViewInit() {
const ctx = this.chartCanvas.nativeElement.getContext('2d');
this.chart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['Label 1', 'Label 2', 'Label 3'],
datasets: [{
label: 'Dataset',
data: [10, 20, 30]
}]
}
});
}
}
updateChart() {
this.chart.data.datasets[0].data = [40, 50, 60];
this.chart.update();
}
确保在组件中调用updateChart()方法来更新数据后,图表会相应地更新视图。
希望这个解决方法能帮助你解决问题!