daylightchart.options.chart.ChartOptions.java Source code

Java tutorial

Introduction

Here is the source code for daylightchart.options.chart.ChartOptions.java

Source

/*
 *
 * Daylight Chart
 * http://sualeh.github.io/DaylightChart
 * Copyright (c) 2007-2016, Sualeh Fatehi.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *
 */
package daylightchart.options.chart;

import java.awt.Paint;

import org.jfree.chart.JFreeChart;

/**
 * Options for customizing charts.
 *
 * @author sfatehi
 */
public class ChartOptions extends BaseChartOptions {

    private static final long serialVersionUID = -7527051325325384357L;

    private boolean antiAlias;
    private Paint backgroundPaint;
    //
    private final PlotOptions plotOptions;
    private final TitleOptions titleOptions;

    /**
     * Constructor.
     */
    public ChartOptions() {
        plotOptions = new PlotOptions();
        titleOptions = new TitleOptions();
    }

    /**
     * {@inheritDoc}
     *
     * @see BaseChartOptions#copyFromChart(org.jfree.chart.JFreeChart)
     */
    @Override
    public void copyFromChart(final JFreeChart chart) {
        antiAlias = chart.getAntiAlias();
        backgroundPaint = chart.getBackgroundPaint();
        //
        plotOptions.copyFromChart(chart);
        titleOptions.copyFromChart(chart);
    }

    /**
     * @return the backgroundPaint
     */
    public final Paint getBackgroundPaint() {
        return backgroundPaint;
    }

    /**
     * @return the plotOptions
     */
    public final PlotOptions getPlotOptions() {
        return plotOptions;
    }

    /**
     * @return the titleOptions
     */
    public final TitleOptions getTitleOptions() {
        return titleOptions;
    }

    /**
     * @return the antiAlias
     */
    public final boolean isAntiAlias() {
        return antiAlias;
    }

    /**
     * @param antiAlias
     *        the antiAlias to set
     */
    public final void setAntiAlias(final boolean antiAlias) {
        this.antiAlias = antiAlias;
    }

    /**
     * @param backgroundPaint
     *        the backgroundPaint to set
     */
    public final void setBackgroundPaint(final Paint backgroundPaint) {
        this.backgroundPaint = backgroundPaint;
    }

    /**
     * {@inheritDoc}
     *
     * @see BaseChartOptions#updateChart(org.jfree.chart.JFreeChart)
     */
    @Override
    public void updateChart(final JFreeChart chart) {
        if (chart instanceof ChartOptionsListener) {
            ((ChartOptionsListener) chart).beforeSettingChartOptions(this);
        }
        //
        chart.setAntiAlias(antiAlias);
        chart.setBackgroundPaint(backgroundPaint);
        //
        plotOptions.updateChart(chart);
        titleOptions.updateChart(chart);
        //
        if (chart instanceof ChartOptionsListener) {
            ((ChartOptionsListener) chart).afterSettingChartOptions(this);
        }
    }

}