# HG changeset patch # User Felix Wolfsteller # Date 1340377449 0 # Node ID 40147510e2d79222d9a28b590fa40b91d3f968f0 # Parent 1203e12c97a609161ffb1937ae08341be10b47a4 Initialize legend aggregation threshold. flys-artifacts/trunk@4758 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r 1203e12c97a6 -r 40147510e2d7 flys-artifacts/ChangeLog --- 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 + + * src/main/java/de/intevation/flys/exports/ChartGenerator.java: + Set the aggregation threshold value. + 2012-06-22 Felix Wolfsteller * src/main/java/de/intevation/flys/collections/FLYSArtifactCollection.java, diff -r 1203e12c97a6 -r 40147510e2d7 flys-artifacts/src/main/java/de/intevation/flys/exports/ChartGenerator.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; }