背景
- datasetsには数値があるけど、tooltipには '%'をつけたい
方法
- optionsのtooltipに以下を設定
tooltips: {
mode: "label",
callbacks: {
label: function(tooltipItem, data) {
return data.datasets[tooltipItem.datasetIndex].label + ': ' + Math.round(tooltipItem.xLabel) + '%'
}
}
}
参考
https://kotaeta.com/60501920
https://tr.you84815.space/chartjs/configuration/tooltip.html
https://tr.you84815.space/chartjs/configuration/tooltip.html#tooltip-callbacks