我正在尝试在我的有角项目中实现chart.js。编译时没有任何错误,但未显示图表。我不知道为什么。
这是chartjs.component.html
<canvas id="canvas">{{chart}}</canvas>
这是chartjs.component.ts
import { Component, OnInit } from '@angular/core';
import { Chart } from "chart.js";
@Component({
selector: 'app-chartjs',
templateUrl: './chartjs.component.html',
styleUrls: ['./chartjs.component.scss']
})
export class ChartjsComponent implements OnInit {
public chart: any = null;
ngOnInit() {
this.chart = new Chart("canvas", {
type: 'bar',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)',
'rgba(255, 159, 64, 0.2)'
],
borderColor: [
'rgba(255,99,132,1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
}
}
});
}
}
然后我在dashboard.component.html
中名为<app-chartjs></app-chartjs>
的选择器中调用它
我还在angular.json的部分脚本中添加了"node_modules/chart.js/dist/Chart.js"
。
请提供任何解决方案...
答案 0 :(得分:1)
您需要将<app-chartjs></app-chartjs>
包装在*ngIf
内,或者只是在<app-chartjs>
中尝试
<div [hidden]="!chart">
<canvas class="my-4 w-100" id="canvas" width="900" height="380">{{chart}}</canvas>
</div>
答案 1 :(得分:0)
您只需要在ngAfterViewInit()
中创建新图表