comparison gnv-artifacts/src/main/java/de/intevation/gnv/chart/XMLChartTheme.java @ 778:9a828e5a2390

Removed trailing whitespace gnv-artifacts/trunk@851 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 07:58:51 +0000
parents 79401c871da4
children b1f5f2a8840f
comparison
equal deleted inserted replaced
777:8009961db1cb 778:9a828e5a2390
22 import de.intevation.artifactdatabase.Config; 22 import de.intevation.artifactdatabase.Config;
23 23
24 /** 24 /**
25 * Implementation of JFreeChart's default implementation 25 * Implementation of JFreeChart's default implementation
26 * <code>StandardChartTheme</code>. This class takes an xml document with a 26 * <code>StandardChartTheme</code>. This class takes an xml document with a
27 * bunch of parameters and turns it into a <code>ChartTheme</code> to change 27 * bunch of parameters and turns it into a <code>ChartTheme</code> to change
28 * the appearance of charts. 28 * the appearance of charts.
29 * 29 *
30 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> 30 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
31 */ 31 */
32 public class XMLChartTheme 32 public class XMLChartTheme
49 49
50 /** 50 /**
51 * Field storing the visibility of the range crosshair 51 * Field storing the visibility of the range crosshair
52 */ 52 */
53 protected boolean rangeCrosshairVisible; 53 protected boolean rangeCrosshairVisible;
54 54
55 /** 55 /**
56 * Field storing the visiblity of lines. 56 * Field storing the visiblity of lines.
57 */ 57 */
58 protected boolean renderLines; 58 protected boolean renderLines;
59 59
465 465
466 super.applyToXYPlot(plot); 466 super.applyToXYPlot(plot);
467 plot.setDomainCrosshairVisible(this.domainCrosshairVisible); 467 plot.setDomainCrosshairVisible(this.domainCrosshairVisible);
468 plot.setRangeCrosshairVisible(this.rangeCrosshairVisible); 468 plot.setRangeCrosshairVisible(this.rangeCrosshairVisible);
469 469
470 AbstractXYItemRenderer renderer = (AbstractXYItemRenderer) 470 AbstractXYItemRenderer renderer = (AbstractXYItemRenderer)
471 plot.getRenderer(); 471 plot.getRenderer();
472 472
473 if (renderer instanceof XYLineAndShapeRenderer) 473 if (renderer instanceof XYLineAndShapeRenderer)
474 applyToXYLineAndShapeRenderer(plot); 474 applyToXYLineAndShapeRenderer(plot);
475 475

http://dive4elements.wald.intevation.org