net.sf.jasperreports.charts.fill.JRFillTimeSeriesPlot Maven / Gradle / Ivy
The newest version!
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2023 Cloud Software Group, Inc. 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 .
*/
package net.sf.jasperreports.charts.fill;
import java.awt.Color;
import net.sf.jasperreports.charts.JRTimeSeriesPlot;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRFont;
import net.sf.jasperreports.engine.fill.JRFillObjectFactory;
/**
* @author Flavius Sana ([email protected])
*/
public class JRFillTimeSeriesPlot extends JRFillChartPlot implements JRTimeSeriesPlot {
/**
*
*/
protected JRFont timeAxisLabelFont;
protected Color timeAxisLabelColor;
protected JRFont timeAxisTickLabelFont;
protected Color timeAxisTickLabelColor;
protected Color timeAxisLineColor;
protected JRFont valueAxisLabelFont;
protected Color valueAxisLabelColor;
protected JRFont valueAxisTickLabelFont;
protected Color valueAxisTickLabelColor;
protected Color valueAxisLineColor;
/**
*
*/
public JRFillTimeSeriesPlot( JRTimeSeriesPlot plot, ChartsFillObjectFactory factory )
{
super(plot, factory);
JRFillObjectFactory parentFactory = factory.getParent();
timeAxisLabelFont = parentFactory.getFont(plot.getChart(), plot.getTimeAxisLabelFont());
timeAxisLabelColor = plot.getOwnTimeAxisLabelColor();
timeAxisTickLabelFont = parentFactory.getFont(plot.getChart(), plot.getTimeAxisTickLabelFont());
timeAxisTickLabelColor = plot.getOwnTimeAxisTickLabelColor();
timeAxisLineColor = plot.getOwnTimeAxisLineColor();
valueAxisLabelFont = parentFactory.getFont(plot.getChart(), plot.getValueAxisLabelFont());
valueAxisLabelColor = plot.getOwnValueAxisLabelColor();
valueAxisTickLabelFont = parentFactory.getFont(plot.getChart(), plot.getValueAxisTickLabelFont());
valueAxisTickLabelColor = plot.getOwnValueAxisTickLabelColor();
valueAxisLineColor = plot.getOwnValueAxisTickLabelColor();
}
@Override
public JRExpression getTimeAxisLabelExpression()
{
return ((JRTimeSeriesPlot)parent).getTimeAxisLabelExpression();
}
@Override
public JRFont getTimeAxisLabelFont()
{
return timeAxisLabelFont;
}
@Override
public Color getTimeAxisLabelColor()
{
return getStyleResolver().getTimeAxisLabelColor(this, this);
}
@Override
public Color getOwnTimeAxisLabelColor()
{
return timeAxisLabelColor;
}
/**
*
*/
public void setTimeAxisLabelColor(Color color)
{
}
@Override
public JRFont getTimeAxisTickLabelFont()
{
return timeAxisTickLabelFont;
}
@Override
public Color getTimeAxisTickLabelColor()
{
return getStyleResolver().getTimeAxisTickLabelColor(this, this);
}
@Override
public Color getOwnTimeAxisTickLabelColor()
{
return timeAxisTickLabelColor;
}
/**
*
*/
public void setTimeAxisTickLabelColor(Color color)
{
}
@Override
public String getTimeAxisTickLabelMask()
{
return ((JRTimeSeriesPlot)parent).getTimeAxisTickLabelMask();
}
@Override
public Boolean getTimeAxisVerticalTickLabels()
{
return ((JRTimeSeriesPlot)parent).getTimeAxisVerticalTickLabels();
}
@Override
public Color getTimeAxisLineColor()
{
return getStyleResolver().getTimeAxisLineColor(this, this);
}
@Override
public Color getOwnTimeAxisLineColor()
{
return timeAxisLineColor;
}
/**
*
*/
public void setTimeAxisLineColor(Color color)
{
}
@Override
public JRExpression getValueAxisLabelExpression()
{
return ((JRTimeSeriesPlot)parent).getValueAxisLabelExpression();
}
@Override
public JRExpression getDomainAxisMinValueExpression()
{
return ((JRTimeSeriesPlot)parent).getDomainAxisMinValueExpression();
}
@Override
public JRExpression getDomainAxisMaxValueExpression()
{
return ((JRTimeSeriesPlot)parent).getDomainAxisMaxValueExpression();
}
@Override
public JRExpression getRangeAxisMinValueExpression()
{
return ((JRTimeSeriesPlot)parent).getRangeAxisMinValueExpression();
}
@Override
public JRExpression getRangeAxisMaxValueExpression()
{
return ((JRTimeSeriesPlot)parent).getRangeAxisMaxValueExpression();
}
@Override
public JRFont getValueAxisLabelFont()
{
return valueAxisLabelFont;
}
@Override
public Color getValueAxisLabelColor()
{
return getStyleResolver().getValueAxisLabelColor(this, this);
}
@Override
public Color getOwnValueAxisLabelColor()
{
return valueAxisLabelColor;
}
/**
*
*/
public void setValueAxisLabelColor(Color color)
{
}
@Override
public JRFont getValueAxisTickLabelFont()
{
return valueAxisTickLabelFont;
}
@Override
public Color getValueAxisTickLabelColor()
{
return getStyleResolver().getValueAxisTickLabelColor(this, this);
}
@Override
public Color getOwnValueAxisTickLabelColor()
{
return valueAxisTickLabelColor;
}
/**
*
*/
public void setValueAxisTickLabelColor(Color color)
{
}
@Override
public String getValueAxisTickLabelMask()
{
return ((JRTimeSeriesPlot)parent).getValueAxisTickLabelMask();
}
@Override
public Boolean getValueAxisVerticalTickLabels()
{
return ((JRTimeSeriesPlot)parent).getValueAxisVerticalTickLabels();
}
@Override
public Color getValueAxisLineColor()
{
return getStyleResolver().getValueAxisLineColor(this, this);
}
@Override
public Color getOwnValueAxisLineColor()
{
return valueAxisLineColor;
}
@Override
public Boolean getShowLines(){
return ((JRTimeSeriesPlot)parent).getShowLines();
}
@Override
public void setShowLines(Boolean showLines){
}
@Override
public Boolean getShowShapes(){
return ((JRTimeSeriesPlot)parent).getShowShapes();
}
@Override
public void setShowShapes(Boolean showLines){
}
}