【发布时间】:2020-04-26 16:12:05
【问题描述】:
我正在使用 Angular,我已经安装了 chart.js,但图表没有显示在页面中。
这是我的代码:
dasboard.component.html
<canvas id="myChart" width="400" height="400"></canvas>
dashboard.component.ts
import { Component, OnInit } from '@angular/core';
import { Chart } from 'chart.js'
@Component({
selector: 'dashboard',
templateUrl: './dashboard.component.html',
styleUrls: ['./dashboard.component.scss']
})
export class DashboardComponent implements OnInit {
ngOnInit() {
var myChart = new Chart('myChart', {
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
}
}]
}
}
});
}
}
当我这样做时
console.log('hello');
在dashboard.component.ts 中,它正在控制台中打印,但图表没有显示我该如何解决这个问题?
【问题讨论】:
-
开发者窗口是否有控制台错误?
-
如果您遇到困难,请享受本教程。 devdactic.com/ionic-4-chartjs
-
@ArunRajR 没有错误...它没有显示任何内容
-
我认为您可以使用专门为 Angular 项目 [ngx 图表] swimlane.github.io/ngx-charts/#/ngx-charts/bar-vertical 开发的更好的 Angular 图表框架替代品,您也可以在 github 上找到它github.com/swimlane/ngx-charts