Java tutorial
/* AWE - Amanzi Wireless Explorer * http://awe.amanzi.org * (C) 2008-2009, AmanziTel AB * * This library is provided under the terms of the Eclipse Public License * as described at http://www.eclipse.org/legal/epl-v10.html. Any use, * reproduction or distribution of the library constitutes recipient's * acceptance of this agreement. * * This library is distributed WITHOUT ANY WARRANTY; without even the * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. */ package org.amanzi.awe.charts.builder; import org.amanzi.awe.charts.builder.dataset.dto.impl.CategoryDatasetContainer; import org.amanzi.awe.charts.builder.internal.Messages; import org.amanzi.awe.charts.model.IChartModel; import org.amanzi.neo.models.exceptions.ModelException; import org.jfree.chart.ChartFactory; import org.jfree.chart.JFreeChart; import org.jfree.chart.axis.CategoryAxis; import org.jfree.chart.plot.CategoryPlot; import org.jfree.chart.renderer.category.StackedBarRenderer3D; /** * TODO Purpose of * <p> * </p> * * @author Vladislav_Kondratenko * @since 1.0.0 */ public class StackedChartBuilder extends AbstractChartBuilder { public StackedChartBuilder(IChartModel model) { super(model); } @Override public JFreeChart createChart() throws ModelException { CategoryDatasetContainer dataset = new CategoryDatasetContainer(getModel()); dataset.computeDatasets(); JFreeChart chart = ChartFactory.createStackedBarChart(getModel().getName(), // chart // title getModel().getDomainAxisName(), getModel().getMainRangeAxis().getName(), dataset.getDataset(getModel().getMainRangeAxis()), getModel().getPlotOrientation(), true, true, false); CategoryPlot plot = ((CategoryPlot) chart.getPlot()); plot.setRenderer(new StackedBarRenderer3D()); CategoryAxis axis = plot.getDomainAxis(); axis.setTickLabelFont(getDefaulTickLabelFont()); axis.setLabelFont(getDefaultAxisFont()); chart.addSubtitle(getSubTitle(Messages.clickItemToDrillDown)); return chart; } }