Mercurial > dive4elements > river
changeset 3185:f1e4b37dcb60
Enable legend item aggreation in time series charts.
flys-artifacts/trunk@4800 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Tue, 26 Jun 2012 13:07:18 +0000 |
parents | 12440c6b8b66 |
children | c130be3fa809 |
files | flys-artifacts/ChangeLog flys-artifacts/src/main/java/de/intevation/flys/exports/TimeseriesChartGenerator.java |
diffstat | 2 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-artifacts/ChangeLog Tue Jun 26 13:04:51 2012 +0000 +++ b/flys-artifacts/ChangeLog Tue Jun 26 13:07:18 2012 +0000 @@ -1,3 +1,10 @@ +2012-06-26 Felix Wolfsteller <felix.wolfsteller@intevation.de> + + Enable legend aggregation in time series charts. + + * src/main/java/de/intevation/flys/exports/TimeseriesChartGenerator.java: + Call super.aggregateLegendEntries. + 2012-06-26 Felix Wolfsteller <felix.wolfsteller@intevation.de> Legend Item Aggregation refactoring.
--- a/flys-artifacts/src/main/java/de/intevation/flys/exports/TimeseriesChartGenerator.java Tue Jun 26 13:04:51 2012 +0000 +++ b/flys-artifacts/src/main/java/de/intevation/flys/exports/TimeseriesChartGenerator.java Tue Jun 26 13:07:18 2012 +0000 @@ -219,6 +219,7 @@ applySeriesAttributes(plot); addAnnotationsToRenderer(plot); + aggregateLegendEntries(plot); return chart; }