diff artifacts/src/main/java/org/dive4elements/river/exports/AxisSection.java @ 7597:fca46ce8e4f5

(issue1225) Implement Magic labels. There is now a new value in the chartsettings "Suggested Label" which is hidden in the property editor. A suggested label is the label that combines the label's of all processors that wrote data to an axis. This suggested label is set as the label when the user has not overwritten the label.
author Andre Heinecke <aheinecke@intevation.de>
date Mon, 25 Nov 2013 14:58:14 +0100
parents af13ceeba52a
children 6dfc3a1fc70d
line wrap: on
line diff
--- a/artifacts/src/main/java/org/dive4elements/river/exports/AxisSection.java	Mon Nov 25 14:53:50 2013 +0100
+++ b/artifacts/src/main/java/org/dive4elements/river/exports/AxisSection.java	Mon Nov 25 14:58:14 2013 +0100
@@ -21,12 +21,13 @@
  */
 public class AxisSection extends TypeSection {
 
-    public static final String IDENTIFIER_ATTR = "id";
-    public static final String LABEL_ATTR      = "label";
-    public static final String FONTSIZE_ATTR   = "font-size";
-    public static final String FIXATION_ATTR   = "fixation";
-    public static final String UPPERRANGE_ATTR = "upper";
-    public static final String LOWERRANGE_ATTR = "lower";
+    public static final String IDENTIFIER_ATTR           = "id";
+    public static final String LABEL_ATTR                = "label";
+    public static final String SUGGESTED_LABEL_ATTR      = "suggested-label";
+    public static final String FONTSIZE_ATTR             = "font-size";
+    public static final String FIXATION_ATTR             = "fixation";
+    public static final String UPPERRANGE_ATTR           = "upper";
+    public static final String LOWERRANGE_ATTR           = "lower";
 
 
     public AxisSection() {
@@ -54,6 +55,15 @@
     }
 
 
+    public void setSuggestedLabel(String label) {
+        setStringValue(SUGGESTED_LABEL_ATTR, label);
+    }
+
+
+    public String getSuggestedLabel() {
+        return getStringValue(SUGGESTED_LABEL_ATTR);
+    }
+
     public void setFontSize(int fontSize) {
         if (fontSize <= 0) {
             return;

http://dive4elements.wald.intevation.org