xxxxxxxxxx
1
<canvas id="bar-chart-custom-tooltip"></canvas>
1
1
xxxxxxxxxx
1
// Bar chart with custom tooltip
2
const dataBarCustomTooltip = {
3
type: 'bar',
4
data: {
5
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
6
datasets: [
7
{
8
label: 'Traffic',
9
data: [30, 15, 62, 65, 61, 65, 40],
10
},
11
],
12
},
13
};
14
15
let bar = null;
16
17
const optionsBarCustomTooltip = {
18
options: {
19
plugins: {
20
tooltip: {
21
callbacks: {
22
label: function (context) {
23
bar = context.label;
24
let label = context.dataset.label || '';
25
label = `${label}: ${context.formattedValue} users`;
26
return;
27
},
28
},
29
},
30
},
31
},
32
};
33
34
new mdb.Chart(
35
document.getElementById('bar-chart-custom-tooltip'),
36
dataBarCustomTooltip,
37
optionsBarCustomTooltip);
38
39
document.getElementById('bar-chart-custom-tooltip').onclick = () => {
40
alert(bar)
41
}
Console errors: 0