diff --git a/server/assets/stats.js b/server/assets/stats.js index e00b556..81b63d9 100644 --- a/server/assets/stats.js +++ b/server/assets/stats.js @@ -1,4 +1,4 @@ -(function() { +(function () { const colours = [ '#D32F2F', '#1976D2', @@ -17,6 +17,16 @@ const options = { plugins: { + tooltip: { + callbacks: { + label: function (context) { + let total = context.dataset.data.reduce((total, next) => total + next); + let percentage = (context.raw / total * 100).toFixed(2); + + return `${context.label} (${percentage}%)`; + } + } + }, legend: { display: false, },