Mercurial > dive4elements > river
changeset 3150:40147510e2d7
Initialize legend aggregation threshold.
flys-artifacts/trunk@4758 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Fri, 22 Jun 2012 15:04:09 +0000 |
parents | 1203e12c97a6 |
children | 08230c76cd92 |
files | flys-artifacts/ChangeLog flys-artifacts/src/main/java/de/intevation/flys/exports/ChartGenerator.java |
diffstat | 2 files changed, 6 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-artifacts/ChangeLog Fri Jun 22 14:46:31 2012 +0000 +++ b/flys-artifacts/ChangeLog Fri Jun 22 15:04:09 2012 +0000 @@ -1,3 +1,8 @@ +2012-06-22 Felix Wolfsteller <felix.wolfsteller@intevation.de> + + * src/main/java/de/intevation/flys/exports/ChartGenerator.java: + Set the aggregation threshold value. + 2012-06-22 Felix Wolfsteller <felix.wolfsteller@intevation.de> * src/main/java/de/intevation/flys/collections/FLYSArtifactCollection.java,
--- a/flys-artifacts/src/main/java/de/intevation/flys/exports/ChartGenerator.java Fri Jun 22 14:46:31 2012 +0000 +++ b/flys-artifacts/src/main/java/de/intevation/flys/exports/ChartGenerator.java Fri Jun 22 15:04:09 2012 +0000 @@ -396,6 +396,7 @@ LegendSection legendSection = new LegendSection(); legendSection.setVisibility(isLegendVisible()); legendSection.setFontSize(getLegendFontSize()); + legendSection.setAggregationThreshold(10); return legendSection; }