summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorFabrice Bellingard <bellingard@gmail.com>2011-08-29 14:46:58 +0200
committerFabrice Bellingard <bellingard@gmail.com>2011-08-29 14:46:58 +0200
commit44621be7dcebc81bc8a5ad416d48a8433b72a41b (patch)
treec697b365fee7acce59e85e45ea32d0c4056ec0b5 /plugins
parent93841cbded740b5eb37ddd6ed29816c632689bf8 (diff)
downloadsonarqube-44621be7dcebc81bc8a5ad416d48a8433b72a41b.tar.gz
sonarqube-44621be7dcebc81bc8a5ad416d48a8433b72a41b.zip
SONAR-2074 Remove y-axis on the chart
Diffstat (limited to 'plugins')
-rw-r--r--plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java
index bceb37b2a0c..0877231f2c2 100644
--- a/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java
+++ b/plugins/sonar-core-plugin/src/main/java/org/sonar/plugins/core/widgets/TimelineWidget.java
@@ -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 {