diff options
Diffstat (limited to 'sonar-server/src/main/webapp/javascripts/bubble-chart.js')
-rw-r--r-- | sonar-server/src/main/webapp/javascripts/bubble-chart.js | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/javascripts/bubble-chart.js b/sonar-server/src/main/webapp/javascripts/bubble-chart.js index cc53294c4bf..9d903a75bac 100644 --- a/sonar-server/src/main/webapp/javascripts/bubble-chart.js +++ b/sonar-server/src/main/webapp/javascripts/bubble-chart.js @@ -229,7 +229,10 @@ window.SonarWidgets = window.SonarWidgets == null ? {} : window.SonarWidgets; gxAxis.selectAll('path') .style('fill', 'none') - .style('stroke', '#000'); + .style('stroke', '#444'); + + gxAxis.selectAll('text') + .style('fill', '#444'); gxAxis.append('text') .text(this.metrics().x) @@ -248,7 +251,10 @@ window.SonarWidgets = window.SonarWidgets == null ? {} : window.SonarWidgets; gyAxis.selectAll('path') .style('fill', 'none') - .style('stroke', '#000'); + .style('stroke', '#444'); + + gyAxis.selectAll('text') + .style('fill', '#444'); gyAxis.append('text') .text(this.metrics().y) |