format numbers

This commit is contained in:
2020-06-08 16:30:37 +02:00
parent 4a7a60f5d2
commit 3118566710
3 changed files with 30 additions and 1 deletions

View File

@@ -124,6 +124,12 @@ DetailsWindow.prototype.renderGraph = function() {
display: true,
labelString: "Downloads"
},
ticks: {
callback: function(value, index, values) {
return formatNumber(value, 3);
},
beginAtZero: true
},
gridLines: {
color: "rgba(100, 255, 100, .05)"
}
@@ -136,6 +142,12 @@ DetailsWindow.prototype.renderGraph = function() {
display: true,
labelString: "Views"
},
ticks: {
callback: function(value, index, values) {
return formatNumber(value, 3);
},
beginAtZero: true
},
gridLines: {
color: "rgba(128, 128, 255, .05)"
}