0
根據圖表版本的更改,數據集本身在條形圖上顯示的值無法正常工作。現有的代碼已與V1.0.2一起使用。 編號:how to display data values on Chart.js 在條形圖上顯示數據集值ChartJs 2.1.6
var ctx = document.getElementById("myChart2").getContext("2d");
var myBar = new Chart(ctx).Bar(chartData, {
showTooltips: false,
onAnimationComplete: function() {
var ctx = this.chart.ctx;
ctx.font = this.scale.font;
ctx.fillStyle = this.scale.textColor
ctx.textAlign = "center";
ctx.textBaseline = "bottom";
this.datasets.forEach(function (dataset) {
dataset.bars.forEach(function (bar) {
ctx.fillText(bar.value, bar.x, bar.y - 5);
});
})
}
});
現在會是怎樣的修改必須以ChartJs V2.1.6工作嗎? 當前條形圖語法與V2.1.6一起使用,如下所示。
var myBarChart = new Chart(ctx, {
type: 'bar',
data: datasets,
options: {
responsive: true,
tooltips: {
enabled: false
},
legend: {
display: false
},
//what should add to display values on bar?
}
});
我這樣做其工作,但所有的標籤都集中到餅圖它不顯示類似於工具提示。在工具提示中,我們看到「標籤:價值」,但採用這種方法我們只能看到價值。 –
@RaviKhambhati只需更改ctx.fillText()的第一個參數 – chafreaky
@charfreaky感謝您的迴應。你能否讓我知道該參數的價值是什麼? –