Merge pull request #11895 from uberbrady/switch_dashboard_piechart_to_percent

Modified dashboard tooltips to add percentage as well as count
This commit is contained in:
snipe
2022-09-29 14:11:16 -07:00
committed by GitHub
+7 -1
View File
@@ -431,7 +431,13 @@
tooltips: {
callbacks: {
label: function(tooltipItem, data) {
return data.labels[tooltipItem.datasetIndex] || '';
counts = data.datasets[0].data;
total = 0;
for(var i in counts) {
total += counts[i];
}
prefix = data.labels[tooltipItem.index] || '';
return prefix+" "+Math.round(counts[tooltipItem.index]/total*100)+"%";
}
}
}