我一直在尝试在Angular4中使用Chart.js。 我正在使用Visual Studio。
我尝试使用ViewChild,但是后来我决定尝试使用官方方式:
https://www.chartjs.org/docs/latest/getting-started/usage.html
package.json:
"@angular/core": "4.2.5",
"@types/chart.js": "^2.7.40",
"chart.js": "^2.7.3",
my-chart.html:
<canvas id="myChart" width="400" height="400"></canvas>
or
<canvas #chartCanvas [style.width]="width" [style.height]="height"></canvas>
“ 我的图表:
import { Chart } from "chart.js"
export class SalesChart implements OnInit {
@Input("chartWidth") width: string = "10%"
@Input("chartHeight") height: string = "20%"
@ViewChild("chartCanvas") private chartCanvas:any
// when click the button:
drawChart() {
// new Chart does not accep HTMLElement
// var ctx = document.getElementById("myChart")
var myChart = new Chart("myChart", {
type: 'bar',
data: {
labels: ["Red", "Blue"],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
],
borderColor: [
'rgba(255,99,132,1)',
'rgba(54, 162, 235, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
})
}
最初使用指定的尺寸渲染画布,但是当执行 drawChart()时,将画布设置为 width 和 height = “ 0”变为空。
初始HTML元素:
<canvas _ngcontent-c2="" height="400" id="myChart" width="400"></canvas>
结果HTML元素:
<canvas _ngcontent-c2="" height="0" id="myChart" width="0" class="chartjs-render-monitor" style="display: block; height: 0px; width: 0px;"></canvas>
我可以更改高度/高度,但是画布绝对是空的。
我也尝试使用ViewChild解决方案,但是当我向Chart()传递有效的东西时,我得到的结果是相同的:宽度和高度设置为“ 0”,并且画布为空。
//var ctx = (<HTMLCanvasElement>this.chartCanvas.nativeElement).getContext("2d")
var ctx = document.getElementById("chartCanvas") as HTMLCanvasElement
我发现了一些使用的教程:
chart = []
// and this in the HTML template
<canvas ...>{{ chart }}</canvas>
使用这种方法,当我没有错误时,图表结果为[Object Object]。
有人知道为什么不创建图表吗?
答案 0 :(得分:2)
我通常通过primeng使用chart.js,即使我不想使用primeng,我也会按照他们的示例进行,因为我发现它很干净。您可以在此处查看他们如何实现它:https://github.com/primefaces/primeng/blob/master/src/app/components/chart/chart.ts