Mercurial > dive4elements > river
changeset 400:7e5c2e93e449
Changed the y-axis title of the computed discharge curve.
flys-artifacts/trunk@1835 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Thu, 05 May 2011 12:31:28 +0000 |
parents | 53cc794fee07 |
children | 34de11dcf355 |
files | flys-artifacts/ChangeLog flys-artifacts/src/main/java/de/intevation/flys/exports/ComputedDischargeCurveGenerator.java |
diffstat | 2 files changed, 17 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-artifacts/ChangeLog Thu May 05 06:12:44 2011 +0000 +++ b/flys-artifacts/ChangeLog Thu May 05 12:31:28 2011 +0000 @@ -1,3 +1,8 @@ +2011-05-05 Ingo Weinzierl <ingo@intevation.de> + + * src/main/java/de/intevation/flys/exports/ComputedDischargeCurveGenerator.java: + Changed the title of the y-axis (now 'W [NN+m]'). + 2011-05-05 Ingo Weinzierl <ingo@intevation.de> * doc/conf/artifacts/winfo.xml: Improved the transition model to reach the
--- a/flys-artifacts/src/main/java/de/intevation/flys/exports/ComputedDischargeCurveGenerator.java Thu May 05 06:12:44 2011 +0000 +++ b/flys-artifacts/src/main/java/de/intevation/flys/exports/ComputedDischargeCurveGenerator.java Thu May 05 12:31:28 2011 +0000 @@ -23,6 +23,18 @@ @Override + protected String getChartTitle() { + return "Abflusskurve"; + } + + + @Override + protected String getYAxisLabel() { + return "W [NN + m]"; + } + + + @Override public void doOut(Artifact artifact, String facet, Document attr) { logger.debug("ComputedDischargeCurveGenerator.doOut");