Package org.openfaces.component.chart.impl.plots

Source Code of org.openfaces.component.chart.impl.plots.GridDatePlotAdapter

/*
* OpenFaces - JSF Component Library 2.0
* Copyright (C) 2007-2012, TeamDev Ltd.
* licensing@openfaces.org
* Unless agreed in writing the contents of this file are subject to
* the GNU Lesser General Public License Version 2.1 (the "LGPL" License).
* This library 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.
* Please visit http://openfaces.org/licensing/ for more details.
*/
package org.openfaces.component.chart.impl.plots;

import org.jfree.chart.axis.ValueAxis;
import org.jfree.chart.renderer.xy.AbstractXYItemRenderer;
import org.jfree.data.xy.XYDataset;
import org.openfaces.component.chart.ChartAxis;
import org.openfaces.component.chart.ChartDateAxis;
import org.openfaces.component.chart.ChartNumberAxis;
import org.openfaces.component.chart.ChartView;
import org.openfaces.component.chart.GridChartView;
import org.openfaces.component.chart.impl.helpers.DateAxisAdapter;
import org.openfaces.component.chart.impl.helpers.NumberAxis3DAdapter;
import org.openfaces.component.chart.impl.helpers.NumberAxisAdapter;

/**
* @author Ekaterina Shliakhovetskaya
*/
public class GridDatePlotAdapter extends XYPlotAdapter {

    public GridDatePlotAdapter(XYDataset ds, AbstractXYItemRenderer renderer,
                               GridChartView chartView) {
        super(ds, renderer, chartView);
    }

    public ValueAxis getDomainAxisAdapter(ChartView chartView) {
        final GridChartView view = (GridChartView) chartView;
        ChartDateAxis keyAxis = (view.getKeyAxis() instanceof ChartDateAxis)
                ? (ChartDateAxis) view.getKeyAxis()
                : null;
        ChartAxis baseAxis = view.getBaseAxis();

        return new DateAxisAdapter(view.getKeyAxisLabel(), isKeyAxisVisible(), keyAxis, baseAxis, view);
    }

    public ValueAxis getRangeAxisAdapter(ChartView chartView) {
        final GridChartView view = (GridChartView) chartView;
        ChartNumberAxis valueAxis = (view.getValueAxis() instanceof ChartNumberAxis)
                ? (ChartNumberAxis) view.getValueAxis()
                : null;
        ChartAxis baseAxis = view.getBaseAxis();

        return !view.isEnable3D()
                ? new NumberAxisAdapter(view.getValueAxisLabel(), isValueAxisVisible(), valueAxis, baseAxis, view)
                : new NumberAxis3DAdapter(view.getValueAxisLabel(), isValueAxisVisible(), valueAxis, baseAxis, view);
    }

}


TOP

Related Classes of org.openfaces.component.chart.impl.plots.GridDatePlotAdapter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.