All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.dynamicreports.design.transformation.chartcustomizer.GroupedStackedBarRendererCustomizer Maven / Gradle / Ivy

Go to download

DynamicReports is an open source Java reporting library based on JasperReports. It allows to create dynamic report designs and it doesn't need a visual report designer. You can very quickly create reports and produce documents that can be displayed, printed or exported into many popular formats such as PDF, Excel, Word and others.

There is a newer version: 6.20.1
Show newest version
/**
 * DynamicReports - Free Java reporting library for creating reports dynamically
 *
 * Copyright (C) 2010 - 2016 Ricardo Mariaca
 * http://www.dynamicreports.org
 *
 * This file is part of DynamicReports.
 *
 * DynamicReports 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.
 *
 * DynamicReports 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 DynamicReports. If not, see .
 */

package net.sf.dynamicreports.design.transformation.chartcustomizer;

import java.awt.Paint;
import java.io.Serializable;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.Map;
import java.util.Set;

import net.sf.dynamicreports.report.constant.Constants;
import net.sf.dynamicreports.report.definition.ReportParameters;
import net.sf.dynamicreports.report.definition.chart.DRIChartCustomizer;

import org.apache.commons.lang3.StringUtils;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.LegendItem;
import org.jfree.chart.LegendItemCollection;
import org.jfree.chart.axis.CategoryAxis;
import org.jfree.chart.axis.SubCategoryAxis;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.renderer.category.GroupedStackedBarRenderer;
import org.jfree.chart.renderer.category.StackedBarRenderer;
import org.jfree.data.KeyToGroupMap;
import org.jfree.data.UnknownKeyException;
import org.jfree.data.category.CategoryDataset;
import org.jfree.data.category.DefaultCategoryDataset;

/**
 * @author Ricardo Mariaca ([email protected])
 */
public class GroupedStackedBarRendererCustomizer implements DRIChartCustomizer, Serializable {
	private static final long serialVersionUID = Constants.SERIAL_VERSION_UID;
	public static final String GROUP_SERIES_KEY = "-{group-series}-";

	private KeyToGroupMap map;
	private Map seriesColors;

	@Override
	public void customize(JFreeChart chart, ReportParameters reportParameters) {
		this.seriesColors = new LinkedHashMap();
		this.map = null;
		Set groups = new LinkedHashSet();
		CategoryDataset dataset = chart.getCategoryPlot().getDataset();

		for (int i = 0; i < dataset.getRowCount(); i++) {
			String rowKey = (String) dataset.getRowKey(i);
			String group = StringUtils.substringBefore(rowKey, GROUP_SERIES_KEY);
			String series = StringUtils.substringAfter(rowKey, GROUP_SERIES_KEY);
			if (map == null) {
				map = new KeyToGroupMap(group);
			}
			map.mapKeyToGroup(rowKey, group);
			groups.add(group);
			if (!seriesColors.containsKey(series)) {
				Paint paint = chart.getCategoryPlot().getDrawingSupplier().getNextPaint();
				seriesColors.put(series, paint);
			}
		}

    DefaultCategoryDataset newDataset = new DefaultCategoryDataset();
    for (Object column : dataset.getColumnKeys()) {
			for (String group : groups) {
				for (String series : seriesColors.keySet()) {
					try {
						Number value = dataset.getValue(group + GROUP_SERIES_KEY + series, (Comparable) column);
						newDataset.addValue(value, group + GROUP_SERIES_KEY + series, (Comparable) column);
					} catch (UnknownKeyException e) {
						newDataset.addValue(0, group + GROUP_SERIES_KEY + series, (Comparable) column);
					}
				}

			}
		}
    dataset = newDataset;

		GroupedStackedBarRenderer renderer = new GroupedStackedBarRenderer();
		renderer.setSeriesToGroupMap(map);

		StackedBarRenderer categoryRenderer = (StackedBarRenderer) chart.getCategoryPlot().getRenderer();
    renderer.setBaseItemLabelsVisible(categoryRenderer.getBaseItemLabelsVisible());
    renderer.setBaseItemLabelFont(categoryRenderer.getBaseItemLabelFont());
    renderer.setBaseItemLabelPaint(categoryRenderer.getBaseItemLabelPaint());
    renderer.setBaseItemLabelGenerator(categoryRenderer.getBaseItemLabelGenerator());
		renderer.setShadowVisible(categoryRenderer.getShadowsVisible());

    renderer.setItemMargin(0.10);
    renderer.setDrawBarOutline(false);
		for (int i = 0; i < dataset.getRowCount(); i++) {
			String rowKey = (String) dataset.getRowKey(i);
			String score = StringUtils.substringAfter(rowKey, GROUP_SERIES_KEY);
			renderer.setSeriesPaint(i, seriesColors.get(score));
		}

    CategoryAxis domainAxis = chart.getCategoryPlot().getDomainAxis();
		SubCategoryAxis newDomainAxis = new SubCategoryAxis(domainAxis.getLabel());
		newDomainAxis.setLabelFont(domainAxis.getLabelFont());
		newDomainAxis.setTickLabelFont(domainAxis.getTickLabelFont());
		newDomainAxis.setLabelPaint(domainAxis.getLabelPaint());
		newDomainAxis.setTickLabelPaint(domainAxis.getTickLabelPaint());
		newDomainAxis.setAxisLinePaint(domainAxis.getAxisLinePaint());
		newDomainAxis.setTickMarkPaint(domainAxis.getTickMarkPaint());
		newDomainAxis.setTickLabelsVisible(domainAxis.isTickLabelsVisible());
		newDomainAxis.setTickMarksVisible(domainAxis.isTickMarksVisible());
    newDomainAxis.setCategoryMargin(0.05);
    for (String group : groups) {
    	newDomainAxis.addSubCategory(group);
		}

    CategoryPlot plot = (CategoryPlot) chart.getPlot();
    plot.setDomainAxis(newDomainAxis);
    plot.setRenderer(renderer);

    LegendItemCollection legendItems = new LegendItemCollection();
    for (String item : seriesColors.keySet()) {
    	legendItems.add(new LegendItem(item, seriesColors.get(item)));
		}
    plot.setFixedLegendItems(legendItems);

    chart.getCategoryPlot().setDataset(dataset);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy