Is it possible using Chart.js to display data values?
I want to print the graph.
Thanks for any advice..
Advertisement
Answer
There is an official plugin for Chart.js 2.7.0+ to do this: Datalabels
Otherwise, you can loop through the points / bars onAnimationComplete and display the values
Preview
HTML
JavaScript
x
3
1
<canvas id="myChart1" height="300" width="500"></canvas>
2
<canvas id="myChart2" height="300" width="500"></canvas>
3
Script
JavaScript
1
49
49
1
var chartData = {
2
labels: ["January", "February", "March", "April", "May", "June"],
3
datasets: [
4
{
5
fillColor: "#79D1CF",
6
strokeColor: "#79D1CF",
7
data: [60, 80, 81, 56, 55, 40]
8
}
9
]
10
};
11
12
var ctx = document.getElementById("myChart1").getContext("2d");
13
var myLine = new Chart(ctx).Line(chartData, {
14
showTooltips: false,
15
onAnimationComplete: function () {
16
17
var ctx = this.chart.ctx;
18
ctx.font = this.scale.font;
19
ctx.fillStyle = this.scale.textColor
20
ctx.textAlign = "center";
21
ctx.textBaseline = "bottom";
22
23
this.datasets.forEach(function (dataset) {
24
dataset.points.forEach(function (points) {
25
ctx.fillText(points.value, points.x, points.y - 10);
26
});
27
})
28
}
29
});
30
31
var ctx = document.getElementById("myChart2").getContext("2d");
32
var myBar = new Chart(ctx).Bar(chartData, {
33
showTooltips: false,
34
onAnimationComplete: function () {
35
36
var ctx = this.chart.ctx;
37
ctx.font = this.scale.font;
38
ctx.fillStyle = this.scale.textColor
39
ctx.textAlign = "center";
40
ctx.textBaseline = "bottom";
41
42
this.datasets.forEach(function (dataset) {
43
dataset.bars.forEach(function (bar) {
44
ctx.fillText(bar.value, bar.x, bar.y - 5);
45
});
46
})
47
}
48
});
49
Fiddle – http://jsfiddle.net/uh9vw0ao/