diff --git a/web/assets/javascripts/dashboard.js b/web/assets/javascripts/dashboard.js index 65f9ffd6..96759792 100644 --- a/web/assets/javascripts/dashboard.js +++ b/web/assets/javascripts/dashboard.js @@ -66,7 +66,7 @@ var realtimeGraph = function(updatePath) { var label = document.createElement('div'); label.className = 'tag'; - label.innerHTML = d.name + ": " + Math.floor(d.formattedYValue); + label.innerHTML = d.name + ": " + Math.floor(d.formattedYValue).numberWithDelimiter(); line.appendChild(swatch); line.appendChild(label); @@ -173,7 +173,7 @@ var historyGraph = function() { var label = document.createElement('div'); label.className = 'tag'; - label.innerHTML = d.name + ": " + Math.floor(d.formattedYValue); + label.innerHTML = d.name + ": " + Math.floor(d.formattedYValue).numberWithDelimiter(); line.appendChild(swatch); line.appendChild(label); diff --git a/web/assets/stylesheets/application.css b/web/assets/stylesheets/application.css index 16bcdc9e..d852bbd4 100755 --- a/web/assets/stylesheets/application.css +++ b/web/assets/stylesheets/application.css @@ -384,7 +384,7 @@ div.interval-slider input { #realtime-legend, #history-legend { - width: 490px; + width: 580px; text-align: left; margin-top: 5px; float: right;