Skip to content

Instantly share code, notes, and snippets.

@donma
Last active July 3, 2018 09:15
Show Gist options
  • Save donma/58521e91e15608cc1e3df208055f98c2 to your computer and use it in GitHub Desktop.
Save donma/58521e91e15608cc1e3df208055f98c2 to your computer and use it in GitHub Desktop.
Chart.js Pie Tooltips
// 關於滑過後的 顯示
tooltips: {
callbacks: {
label: function (tooltipItem, data) {
var dataset = data.datasets[tooltipItem.datasetIndex];
//計算總和
var sum = dataset.data.reduce(function (previousValue, currentValue, currentIndex, array) {
return previousValue + currentValue;
});
var currentValue = dataset.data[tooltipItem.index];
var percent = Math.round(((currentValue / sum) * 100));
return " " + data.labels[tooltipItem.index] + ":" + currentValue + " (" + percent + " %)";
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment