【发布时间】:2018-05-19 04:56:30
【问题描述】:
我想在垂直条(绿色条)上绘制一个条。我正在使用带有 Angular 4 的 Chart JS V2。
我找到了一些绘制线条的代码,但它在 Angular 4 中不起作用。
我也尝试过使用annotation,但它不起作用。
添加注释的命令:npm install chartjs-plugin-annotation --save
以下是我的代码,仅适用于绘制竖线。谁能帮我在上面画水平线。
回答:
安装npm install chartjs-plugin-annotation --save
然后import 'chartjs-plugin-annotation';
this.ctx = document.getElementById("myChart");
this.myChart = new Chart(this.ctx, {
type: 'bar',
data: {
labels: this.barData.getLabels(),
datasets: [{
label: this.barData.actualLegendLabel,
data: this.barData.getLineData(),
backgroundColor: this.backgroundColorBarOne,
borderColor: [
'rgba(81,117, 194,1)',
]}]
},
options: {
scales: {
responsive: true,
scaleBeginAtZero: false,
barBeginAtOrigin: true,
yAxes: [{
ticks: {
beginAtZero: true
},
gridLines: {
display: false
}
}],
xAxes: [{
ticks: {
beginAtZero: true
},
gridLines: {
display: false
}
}]
},
legend: {
cursor: "line",
position: 'top',
labels: {
fontSize: 10,
}
},
layout: {
padding: {
left: 3,
right: 3,
top: 5,
bottom: 5
}
}, annotation: {
annotations: [{
drawTime: 'afterDraw', // overrides annotation.drawTime if set
id: 'a-line-1', // optional
type: 'line',
mode: 'horizontal',
scaleID: 'y-axis-0',
value: '25',
borderColor: 'red',
borderWidth: 2,
// Fires when the user clicks this annotation on the chart
// (be sure to enable the event in the events array below).
onClick: function(e) {
// `this` is bound to the annotation element
}
}]
}
}
});
【问题讨论】:
-
绿色条应该位于 y 轴的哪个位置?
-
@maxpaj 作为平均值,它可以在任何地方。
-
使用chart.js,您可以使用图层并一起绘制多个图表,您想在条形图的顶部放置一个折线图。看看这个:chartjs.org/docs/latest/charts/mixed.html
标签: javascript angular ionic-framework chart.js bar-chart