aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main/js/widgets/bubble-chart.js
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-server/src/main/js/widgets/bubble-chart.js')
-rw-r--r--sonar-server/src/main/js/widgets/bubble-chart.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/sonar-server/src/main/js/widgets/bubble-chart.js b/sonar-server/src/main/js/widgets/bubble-chart.js
index 43ef2b78f3c..edafc4c6f66 100644
--- a/sonar-server/src/main/js/widgets/bubble-chart.js
+++ b/sonar-server/src/main/js/widgets/bubble-chart.js
@@ -163,13 +163,11 @@ window.SonarWidgets = window.SonarWidgets == null ? {} : window.SonarWidgets;
.attr('r', function (d) {
return widget.size(widget.getSizeMetric(d));
})
- .style('fill', function (d) {
- // TODO widget.bubbleColorUndefined()
+ .style('fill', function () {
return widget.bubbleColor();
})
.style('fill-opacity', 0.2)
- .style('stroke', function (d) {
- // TODO widget.bubbleColorUndefined()
+ .style('stroke', function () {
return widget.bubbleColor();
})
.style('transition', 'all 0.2s ease');