/* * JasperReports - Free Java Reporting Library. * Copyright (C) 2001 - 2009 Jaspersoft Corporation. All rights reserved. * http://www.jaspersoft.com * * Unless you have purchased a commercial license agreement from Jaspersoft, * the following license terms apply: * * This program is part of JasperReports. * * JasperReports is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * JasperReports is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with JasperReports. If not, see <http://www.gnu.org/licenses/>. */ package net.sf.jasperreports.charts.base; import java.awt.Color; import java.io.IOException; import java.io.ObjectInputStream; import net.sf.jasperreports.charts.JRLinePlot; import net.sf.jasperreports.engine.JRChart; import net.sf.jasperreports.engine.JRChartPlot; import net.sf.jasperreports.engine.JRConstants; import net.sf.jasperreports.engine.JRExpression; import net.sf.jasperreports.engine.JRExpressionCollector; import net.sf.jasperreports.engine.JRFont; import net.sf.jasperreports.engine.base.JRBaseChartPlot; import net.sf.jasperreports.engine.base.JRBaseFont; import net.sf.jasperreports.engine.base.JRBaseObjectFactory; import net.sf.jasperreports.engine.util.JRStyleResolver; /** * @author Flavius Sana (flavius_sana@users.sourceforge.net) * @version $Id: JRBaseLinePlot.java 3715 2010-04-08 18:08:49Z teodord $ */ public class JRBaseLinePlot extends JRBaseChartPlot implements JRLinePlot { private static final long serialVersionUID = JRConstants.SERIAL_VERSION_UID; public static final String PROPERTY_SHOW_LINES = "showLines"; public static final String PROPERTY_SHOW_SHAPES = "showShapes"; protected JRExpression categoryAxisLabelExpression = null; protected JRFont categoryAxisLabelFont = null; protected Color categoryAxisLabelColor = null; protected JRFont categoryAxisTickLabelFont = null; protected Color categoryAxisTickLabelColor = null; protected String categoryAxisTickLabelMask = null; protected Boolean categoryAxisVerticalTickLabels = null; protected Color categoryAxisLineColor = null; protected JRExpression valueAxisLabelExpression = null; protected JRExpression rangeAxisMinValueExpression = null; protected JRExpression rangeAxisMaxValueExpression = null; protected JRExpression domainAxisMinValueExpression = null; protected JRExpression domainAxisMaxValueExpression = null; protected JRFont valueAxisLabelFont = null; protected Color valueAxisLabelColor = null; protected JRFont valueAxisTickLabelFont = null; protected Color valueAxisTickLabelColor = null; protected String valueAxisTickLabelMask = null; protected Boolean valueAxisVerticalTickLabels = null; protected Color valueAxisLineColor = null; Boolean showShapes = null; Boolean showLines = null; /** * */ public JRBaseLinePlot(JRChartPlot plot, JRChart chart) { super(plot, chart); JRLinePlot linePlot = plot instanceof JRLinePlot ? (JRLinePlot)plot : null; if (linePlot == null) { categoryAxisLabelFont = new JRBaseFont(chart, null); categoryAxisTickLabelFont = new JRBaseFont(chart, null); valueAxisLabelFont = new JRBaseFont(chart, null); valueAxisTickLabelFont = new JRBaseFont(chart, null); } else { categoryAxisLabelFont = new JRBaseFont(chart, linePlot.getCategoryAxisLabelFont()); categoryAxisTickLabelFont = new JRBaseFont(chart, linePlot.getCategoryAxisTickLabelFont()); valueAxisLabelFont = new JRBaseFont(chart, linePlot.getValueAxisLabelFont()); valueAxisTickLabelFont = new JRBaseFont(chart, linePlot.getValueAxisTickLabelFont()); } } /** * */ public JRBaseLinePlot(JRLinePlot linePlot, JRBaseObjectFactory factory ) { super(linePlot, factory); showShapes = linePlot.getShowShapes(); showLines = linePlot.getShowLines(); categoryAxisLabelExpression = factory.getExpression( linePlot.getCategoryAxisLabelExpression() ); categoryAxisLabelFont = new JRBaseFont(linePlot.getChart(), linePlot.getCategoryAxisLabelFont()); categoryAxisLabelColor = linePlot.getOwnCategoryAxisLabelColor(); categoryAxisTickLabelFont = new JRBaseFont(linePlot.getChart(), linePlot.getCategoryAxisTickLabelFont()); categoryAxisTickLabelColor = linePlot.getOwnCategoryAxisTickLabelColor(); categoryAxisTickLabelMask = linePlot.getCategoryAxisTickLabelMask(); categoryAxisVerticalTickLabels = linePlot.getCategoryAxisVerticalTickLabels(); categoryAxisLineColor = linePlot.getOwnCategoryAxisLineColor(); labelRotationDouble = linePlot.getCategoryAxisTickLabelRotation(); valueAxisLabelExpression = factory.getExpression( linePlot.getValueAxisLabelExpression() ); domainAxisMinValueExpression = factory.getExpression( linePlot.getDomainAxisMinValueExpression() ); domainAxisMaxValueExpression = factory.getExpression( linePlot.getDomainAxisMaxValueExpression() ); rangeAxisMinValueExpression = factory.getExpression( linePlot.getRangeAxisMinValueExpression() ); rangeAxisMaxValueExpression = factory.getExpression( linePlot.getRangeAxisMaxValueExpression() ); valueAxisLabelFont = new JRBaseFont(linePlot.getChart(), linePlot.getValueAxisLabelFont()); valueAxisLabelColor = linePlot.getOwnValueAxisLabelColor(); valueAxisTickLabelFont = new JRBaseFont(linePlot.getChart(), linePlot.getValueAxisTickLabelFont()); valueAxisTickLabelColor = linePlot.getOwnValueAxisTickLabelColor(); valueAxisTickLabelMask = linePlot.getValueAxisTickLabelMask(); valueAxisVerticalTickLabels = linePlot.getValueAxisVerticalTickLabels(); valueAxisLineColor = linePlot.getOwnValueAxisLineColor(); } /** * */ public JRExpression getCategoryAxisLabelExpression(){ return categoryAxisLabelExpression; } /** * */ public JRFont getCategoryAxisLabelFont() { return categoryAxisLabelFont; } /** * */ public Color getCategoryAxisLabelColor() { return JRStyleResolver.getCategoryAxisLabelColor(this, this); } /** * */ public Color getOwnCategoryAxisLabelColor() { return categoryAxisLabelColor; } /** * */ public JRFont getCategoryAxisTickLabelFont() { return categoryAxisTickLabelFont; } /** * */ public Color getCategoryAxisTickLabelColor() { return JRStyleResolver.getCategoryAxisTickLabelColor(this, this); } /** * */ public Color getOwnCategoryAxisTickLabelColor() { return categoryAxisTickLabelColor; } /** * */ public String getCategoryAxisTickLabelMask() { return categoryAxisTickLabelMask; } /** * */ public Boolean getCategoryAxisVerticalTickLabels() { return categoryAxisVerticalTickLabels; } /** * */ public Double getCategoryAxisTickLabelRotation() { return labelRotationDouble; } /** * */ public void setCategoryAxisTickLabelRotation(Double labelRotationDouble) { Object old = this.labelRotationDouble; this.labelRotationDouble = labelRotationDouble; getEventSupport().firePropertyChange(PROPERTY_CATEGORY_AXIS_TICK_LABEL_ROTATION, old, this.labelRotationDouble); } /** * */ public Color getCategoryAxisLineColor() { return JRStyleResolver.getCategoryAxisLineColor(this, this); } /** * */ public Color getOwnCategoryAxisLineColor() { return categoryAxisLineColor; } /** * */ public JRExpression getValueAxisLabelExpression(){ return valueAxisLabelExpression; } /** * */ public JRExpression getRangeAxisMinValueExpression(){ return rangeAxisMinValueExpression; } /** * */ public JRExpression getRangeAxisMaxValueExpression(){ return rangeAxisMaxValueExpression; } /** * */ public JRExpression getDomainAxisMinValueExpression(){ return domainAxisMinValueExpression; } /** * */ public JRExpression getDomainAxisMaxValueExpression(){ return domainAxisMaxValueExpression; } /** * */ public JRFont getValueAxisLabelFont() { return valueAxisLabelFont; } /** * */ public Color getValueAxisLabelColor() { return JRStyleResolver.getValueAxisLabelColor(this, this); } /** * */ public Color getOwnValueAxisLabelColor() { return valueAxisLabelColor; } /** * */ public JRFont getValueAxisTickLabelFont() { return valueAxisTickLabelFont; } /** * */ public Color getValueAxisTickLabelColor() { return JRStyleResolver.getValueAxisTickLabelColor(this, this); } /** * */ public Color getOwnValueAxisTickLabelColor() { return valueAxisTickLabelColor; } /** * */ public String getValueAxisTickLabelMask() { return valueAxisTickLabelMask; } /** * */ public Boolean getValueAxisVerticalTickLabels() { return valueAxisVerticalTickLabels; } /** * */ public Color getValueAxisLineColor() { return JRStyleResolver.getValueAxisLineColor(this, this); } /** * */ public Color getOwnValueAxisLineColor() { return valueAxisLineColor; } /** * @deprecated Replaced by {@link #getShowShapes()} */ public boolean isShowShapes(){ return showShapes == null ? true : showShapes.booleanValue(); } /** * */ public Boolean getShowShapes(){ return showShapes; } /** * @deprecated Replaced by {@link #getShowLines()} */ public boolean isShowLines(){ return showLines == null ? true : showLines.booleanValue(); } /** * */ public Boolean getShowLines(){ return showLines; } /** * @deprecated Replaced by {@link #setShowShapes(Boolean)} */ public void setShowShapes( boolean value ){ setShowShapes(Boolean.valueOf(value)); } /** * */ public void setShowShapes( Boolean value ){ Boolean old = this.showShapes; this.showShapes = value; getEventSupport().firePropertyChange(PROPERTY_SHOW_SHAPES, old, this.showShapes); } /** * @deprecated Replaced by {@link #setShowLines(Boolean)} */ public void setShowLines( boolean value ){ setShowLines(Boolean.valueOf(value)); } /** * */ public void setShowLines( Boolean value ){ Boolean old = this.showLines; this.showLines = value; getEventSupport().firePropertyChange(PROPERTY_SHOW_SHAPES, old, this.showLines); } /** * */ public void collectExpressions(JRExpressionCollector collector) { collector.collect(this); } /** * */ public Object clone(JRChart parentChart) { JRBaseLinePlot clone = (JRBaseLinePlot)super.clone(parentChart); if (categoryAxisLabelExpression != null) { clone.categoryAxisLabelExpression = (JRExpression)categoryAxisLabelExpression.clone(); } if (valueAxisLabelExpression != null) { clone.valueAxisLabelExpression = (JRExpression)valueAxisLabelExpression.clone(); } if (domainAxisMinValueExpression != null) { clone.domainAxisMinValueExpression = (JRExpression)domainAxisMinValueExpression.clone(); } if (domainAxisMaxValueExpression != null) { clone.domainAxisMaxValueExpression = (JRExpression)domainAxisMaxValueExpression.clone(); } if (rangeAxisMinValueExpression != null) { clone.rangeAxisMinValueExpression = (JRExpression)rangeAxisMinValueExpression.clone(); } if (rangeAxisMaxValueExpression != null) { clone.rangeAxisMaxValueExpression = (JRExpression)rangeAxisMaxValueExpression.clone(); } return clone; } /* * These fields are only for serialization backward compatibility. */ private int PSEUDO_SERIAL_VERSION_UID = JRConstants.PSEUDO_SERIAL_VERSION_UID; //NOPMD /** * @deprecated */ private boolean isShowShapes = true; /** * @deprecated */ private boolean isShowLines = true; private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject(); if (PSEUDO_SERIAL_VERSION_UID < JRConstants.PSEUDO_SERIAL_VERSION_UID_3_1_3) { showShapes = Boolean.valueOf(isShowShapes); showLines = Boolean.valueOf(isShowLines); } } }