daylightchart.options.chart.BaseChartOptions.java Source code

Java tutorial

Introduction

Here is the source code for daylightchart.options.chart.BaseChartOptions.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.io.Serializable;

import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.DateAxis;
import org.jfree.chart.editor.ChartEditor;
import org.jfree.chart.editor.ChartEditorManager;
import org.jfree.chart.plot.XYPlot;

/**
 * Options for customizing charts.
 *
 * @author sfatehi
 */
public abstract class BaseChartOptions implements Serializable {

    private static final long serialVersionUID = 1329786356991593668L;

    private static final JFreeChart chart = createDummyChart();

    private static JFreeChart createDummyChart() {
        final JFreeChart chart = new JFreeChart(new XYPlot());
        chart.setTitle("");
        final XYPlot plot = chart.getXYPlot();
        plot.setDomainAxis(new DateAxis());
        plot.setRangeAxis(new DateAxis());
        return chart;
    }

    /**
     * Copies options from the provided chart.
     *
     * @param chart
     *        Chart to copy options from
     */
    public abstract void copyFromChart(JFreeChart chart);

    /**
     * Copies options from the provided chart editor.
     *
     * @param chartEditor
     *        Chart editor to copy options from
     */
    public final void copyFromChartEditor(final ChartEditor chartEditor) {
        chartEditor.updateChart(chart);
        copyFromChart(chart);
    }

    /**
     * Gets a chart editor that has preset options.
     *
     * @return Chart editor.
     */
    public final ChartEditor getChartEditor() {
        updateChart(chart);
        return ChartEditorManager.getChartEditor(chart);
    }

    /**
     * {@inheritDoc}
     *
     * @see java.lang.Object#toString()
     */
    @Override
    public String toString() {
        return ReflectionToStringBuilder.toString(this, ToStringStyle.MULTI_LINE_STYLE);
    }

    /**
     * Updates a chart with these options.
     *
     * @param chart
     *        Chart to update.
     */
    public abstract void updateChart(JFreeChart chart);

}