mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 06:17:28 -08:00
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:
commit
2b7c8cf82b
|
@ -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)+"%";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue