diff options
author | Fabrice Bellingard <bellingard@gmail.com> | 2011-08-29 14:46:58 +0200 |
---|---|---|
committer | Fabrice Bellingard <bellingard@gmail.com> | 2011-08-29 14:46:58 +0200 |
commit | 44621be7dcebc81bc8a5ad416d48a8433b72a41b (patch) | |
tree | c697b365fee7acce59e85e45ea32d0c4056ec0b5 /plugins | |
parent | 93841cbded740b5eb37ddd6ed29816c632689bf8 (diff) | |
download | sonarqube-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.java | 2 |
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 { |