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
commit 2b7c8cf82b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)+"%";
}
}
}