net.sf.jasperreports.charts.fill.JRFillBarPlot 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.JRBarPlot;
import net.sf.jasperreports.charts.JRItemLabel;
import net.sf.jasperreports.engine.JRExpression;
import net.sf.jasperreports.engine.JRFont;
import net.sf.jasperreports.engine.fill.JRFillObjectFactory;
/**
* @author Teodor Danciu ([email protected])
*/
public class JRFillBarPlot extends JRFillChartPlot implements JRBarPlot
{
/**
*
*/
protected JRFont categoryAxisLabelFont;
protected Color categoryAxisLabelColor;
protected JRFont categoryAxisTickLabelFont;
protected Color categoryAxisTickLabelColor;
protected Color categoryAxisLineColor;
protected JRFont valueAxisLabelFont;
protected Color valueAxisLabelColor;
protected JRFont valueAxisTickLabelFont;
protected Color valueAxisTickLabelColor;
protected Color valueAxisLineColor;
/**
*
*/
public JRFillBarPlot(JRBarPlot barPlot, ChartsFillObjectFactory factory)
{
super(barPlot, factory);
JRFillObjectFactory parentFactory = factory.getParent();
categoryAxisLabelFont = parentFactory.getFont(barPlot.getChart(), barPlot.getCategoryAxisLabelFont());
categoryAxisLabelColor = barPlot.getOwnCategoryAxisLabelColor();
categoryAxisTickLabelFont = parentFactory.getFont(barPlot.getChart(), barPlot.getCategoryAxisTickLabelFont());
categoryAxisTickLabelColor = barPlot.getOwnCategoryAxisTickLabelColor();
categoryAxisLineColor = barPlot.getOwnCategoryAxisLineColor();
valueAxisLabelFont = parentFactory.getFont(barPlot.getChart(), barPlot.getValueAxisLabelFont());
valueAxisLabelColor = barPlot.getOwnValueAxisLabelColor();
valueAxisTickLabelFont = parentFactory.getFont(barPlot.getChart(), barPlot.getValueAxisTickLabelFont());
valueAxisTickLabelColor = barPlot.getOwnValueAxisTickLabelColor();
valueAxisLineColor = barPlot.getOwnValueAxisLineColor();
}
@Override
public JRExpression getCategoryAxisLabelExpression()
{
return ((JRBarPlot)parent).getCategoryAxisLabelExpression();
}
@Override
public JRFont getCategoryAxisLabelFont()
{
return categoryAxisLabelFont;
}
@Override
public Color getCategoryAxisLabelColor()
{
return getStyleResolver().getCategoryAxisLabelColor(this, this);
}
@Override
public Color getOwnCategoryAxisLabelColor()
{
return categoryAxisLabelColor;
}
/**
*
*/
public void setCategoryAxisLabelColor(Color color)
{
}
@Override
public JRFont getCategoryAxisTickLabelFont()
{
return categoryAxisTickLabelFont;
}
@Override
public Color getCategoryAxisTickLabelColor()
{
return getStyleResolver().getCategoryAxisTickLabelColor(this, this);
}
@Override
public Color getOwnCategoryAxisTickLabelColor()
{
return categoryAxisTickLabelColor;
}
@Override
public JRItemLabel getItemLabel()
{
return ((JRBarPlot)parent).getItemLabel();
}
/**
*
*/
public void setItemLabel( JRItemLabel itemLabel ){
}
/**
*
*/
public void setCategoryAxisTickLabelColor(Color color)
{
}
@Override
public String getCategoryAxisTickLabelMask()
{
return ((JRBarPlot)parent).getCategoryAxisTickLabelMask();
}
@Override
public Boolean getCategoryAxisVerticalTickLabels()
{
return ((JRBarPlot)parent).getCategoryAxisVerticalTickLabels();
}
@Override
public Double getCategoryAxisTickLabelRotation()
{
return ((JRBarPlot)parent).getCategoryAxisTickLabelRotation();
}
@Override
public void setCategoryAxisTickLabelRotation(Double labelRotation)
{
}
@Override
public Color getCategoryAxisLineColor()
{
return getStyleResolver().getCategoryAxisLineColor(this, this);
}
@Override
public Color getOwnCategoryAxisLineColor()
{
return categoryAxisLineColor;
}
/**
*
*/
public void setCategoryAxisLineColor(Color color)
{
}
@Override
public JRExpression getValueAxisLabelExpression()
{
return ((JRBarPlot)parent).getValueAxisLabelExpression();
}
@Override
public JRExpression getDomainAxisMinValueExpression()
{
return ((JRBarPlot)parent).getDomainAxisMinValueExpression();
}
@Override
public JRExpression getDomainAxisMaxValueExpression()
{
return ((JRBarPlot)parent).getDomainAxisMaxValueExpression();
}
@Override
public JRExpression getRangeAxisMinValueExpression()
{
return ((JRBarPlot)parent).getRangeAxisMinValueExpression();
}
@Override
public JRExpression getRangeAxisMaxValueExpression()
{
return ((JRBarPlot)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 ((JRBarPlot)parent).getValueAxisTickLabelMask();
}
@Override
public Boolean getValueAxisVerticalTickLabels()
{
return ((JRBarPlot)parent).getValueAxisVerticalTickLabels();
}
@Override
public Color getValueAxisLineColor()
{
return getStyleResolver().getValueAxisLineColor(this, this);
}
@Override
public Color getOwnValueAxisLineColor()
{
return valueAxisLineColor;
}
/**
*
*/
public void setValueAxisLineColor(Color color)
{
}
@Override
public Boolean getShowTickMarks()
{
return ((JRBarPlot)parent).getShowTickMarks();
}
@Override
public void setShowTickMarks(Boolean isShowTickMarks)
{
}
@Override
public Boolean getShowTickLabels()
{
return ((JRBarPlot)parent).getShowTickLabels();
}
@Override
public void setShowTickLabels(Boolean isShowTickLabels)
{
}
@Override
public Boolean getShowLabels(){
return ((JRBarPlot)parent).getShowLabels();
}
@Override
public void setShowLabels( Boolean isShowLabels ){
}
}