]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2074 Remove y-axis on the chart
authorFabrice Bellingard <bellingard@gmail.com>
Mon, 29 Aug 2011 12:46:58 +0000 (14:46 +0200)
committerFabrice Bellingard <bellingard@gmail.com>
Mon, 29 Aug 2011 12:46:58 +0000 (14:46 +0200)
plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java
sonar-server/src/main/webapp/javascripts/protovis-sonar.js

index bceb37b2a0c973b94db3bc11526101a157e24540..0877231f2c23c1ebef668f3bc80e02026d6c90db 100644 (file)
@@ -32,7 +32,7 @@ import org.sonar.api.web.WidgetPropertyType;
         @WidgetProperty(key = "metric2", type = WidgetPropertyType.METRIC),
         @WidgetProperty(key = "metric3", type = WidgetPropertyType.METRIC),
         @WidgetProperty(key = "hideEvents", type = WidgetPropertyType.BOOLEAN),
-        @WidgetProperty(key = "chartHeight", type = WidgetPropertyType.INTEGER)
+        @WidgetProperty(key = "chartHeight", type = WidgetPropertyType.INTEGER, defaultValue = "80")
     }
 )
 public class TimelineWidget extends AbstractRubyTemplate implements RubyRailsWidget {
index 18c3d627ef69856d828ad24171dd676e8e1e26e6..28e8aba5011aedb2916fdfe45083c2acd1e0710d 100755 (executable)
@@ -44,23 +44,11 @@ SonarWidgets.Timeline.prototype.render = function() {
        var widgetDiv = document.getElementById(this.wDivId);
        
        var footerFont = "12px Arial,Helvetica,sans-serif";
+       var show_y_axis = (data.length==1)
        
        /* Sizing and scales. */
-       var leftMargin = 20;
-       var show_y_axis = (data.length==1)
-       if (show_y_axis) {
-               // We must evaluate how wide the left margin must be, depending on the values that we get (so that they can be displayed correctly)
-               var maxNumberOnY = 0;
-               for (var i = 0; i < trendData.length; i++) {
-                       for (var j = 0; j < trendData[i].length; j++) {
-                               if (trendData[i][j].y > maxNumberOnY) { maxNumberOnY = trendData[i][j].y; }
-                       }
-               }
-               minMargin = (maxNumberOnY + "").length * 7;
-               if (minMargin > leftMargin) { leftMargin = minMargin; }
-       }
        var footerHeight = 30 + (events ? 3 : this.wMetrics.size()) * 12;
-       var w = widgetDiv.parentNode.clientWidth - leftMargin - 30, 
+       var w = widgetDiv.parentNode.clientWidth - 60, 
                h = (this.wHeight == null ? 80 : this.wHeight) + footerHeight - 5,
                S=2;
 
@@ -77,7 +65,7 @@ SonarWidgets.Timeline.prototype.render = function() {
                .canvas(widgetDiv)
                .width(w)
                .height(h)
-               .left(leftMargin)
+               .left(20)
                .right(20)
                .bottom(footerHeight)
                .top(5)
@@ -93,17 +81,6 @@ SonarWidgets.Timeline.prototype.render = function() {
                .add(pv.Label)
                .text(x.tickFormat);
 
-       /* Y-axis and ticks. */
-       if (show_y_axis) { 
-               vis.add(pv.Rule)
-               .data(y[0].ticks(5))
-               .bottom(y[0])
-               .strokeStyle(function(d) {return d ? "#eee" : "#000";})
-               .anchor("left")
-               .add(pv.Label)
-               .text(y[0].tickFormat); 
-       }
-
        /* A panel for each data series. */
        var panel = vis.add(pv.Panel)
                .data(trendData);