我在 angular2 属性指令中渲染图表(angular2 团队采用的一种方法)。此方法适用于 chart.js,但不适用于 chart.js 2.x
属性指令的代码是...
import {Directive, ElementRef, Input} from '@angular/core';
declare var Chart:any;
@Directive({
selector: '[bargraph]'
})
export class BarGraphDirective {
el:any;
myChart:any;
constructor(element:ElementRef) {
this.el = element.nativeElement;
}
ngAfterViewInit() {
var canvas = this.el;
var ctx = canvas.getContext('2d');
var _data = {
labels: ["01-01",
"01-04",
"01-15",
"02-03",
"03-25",
"04-03",
"04-14",
"05-27",
"05-27",
"08-03"],
datasets: [{
data: [5, 13, 23, 20, 5, 13, 23, 20, 110, 2],
label: "female",
borderColor: "rgba(197,23,1,0.8)",
backgroundColor: "rgba(197,23,1,0.4)",
hoverBackgroundColor: "rgba(197,23,1,1)",
borderWidth: 1,
pointBorderColor: "rgba(197,23,1,1)",
pointBackgroundColor: "rgba(255,255,255,0.8)",
pointBorderWidth: 1.5,
tension: -1,
yAxisID: "y-axis-1",
}, ],
};
var _options = {
scales: {
xAxes: [{
categorySpacing: 0
}],
yAxes: [{
type: "linear",
display: true,
position: "left",
id: "y-axis-1",
}]
}
};
this.myChart = new Chart(ctx, {
type: "line",
data: _data,
options: _options
});
console.log(ctx);
console.log(this.myChart);
}
}
造型是...
canvas[bargraph] {
height: 400px !important;
width: 700px !important;
}
使用它的组件有...
<canvas bargraph width="700" height="400"></canvas>
在模板中。
一切都如预期。console.log 语句显示 ctx 和 this.myChart 都在 ngAfterViewInit 生命周期钩子中定义。没有错误。该图根本不显示。
PS Chart.js v2 代码在 Angular2 之外可以正常工作,根据这个 JS Fiddle - http://jsfiddle.net/beehe4eg/
JSFiddle 和我的代码之间的唯一区别是挂钩到 DOM ...
document.getElementById("barChart") // for the fiddle
element.nativeElement // in my code as per the approach in the angular 2 docs
属性指令的文档,特别是 DOM 钩子的文档是 ... https://angular.io/docs/ts/latest/guide/attribute-directives.html#!#our-first-draft
element.nativeElement 钩子适用于带有 angular2 的 chart.js v1(使用相同的方法)。
请注意,github repo ... https://github.com/valor-software/ng2-charts 正在使用 chart.js v1,所以这无济于事
希望那里的人可能知道解决方案或可以解决它!提前致谢。