Bar plot using the Gral library
Code: "gral_SimpleBarPlot.java". Programming language: Java
DMelt Version 1.7. Last modified: 02/27/1971. License: Free
https://datamelt.org/code/cache/gral_SimpleBarPlot_3039.java
To run this script using the DMelt IDE,
copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.
/*
* GRAL: GRAphing Library for Java(R)
*
* (C) Copyright 2009-2016 Erich Seifert ,
* Michael Seifert
*
* This file is part of GRAL.
*
* GRAL 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.
*
* GRAL 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 GRAL. If not, see .
*/
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Font;
import java.awt.LinearGradientPaint;
import de.erichseifert.gral.data.DataTable;
import de.erichseifert.gral.examples.ExamplePanel;
import de.erichseifert.gral.plots.BarPlot;
import de.erichseifert.gral.plots.BarPlot.BarRenderer;
import de.erichseifert.gral.ui.InteractivePanel;
import de.erichseifert.gral.util.GraphicsUtils;
import de.erichseifert.gral.graphics.Insets2D;
import de.erichseifert.gral.graphics.Location;
public class gral_SimpleBarPlot extends ExamplePanel {
/** Version id for serialization. */
private static final long serialVersionUID = -2793954497895054530L;
@SuppressWarnings("unchecked")
public gral_SimpleBarPlot() {
// Create example data
DataTable data = new DataTable(Double.class, Integer.class, String.class);
data.add(0.1, 1, "January");
data.add(0.2, 3, "February");
data.add(0.3, -2, "March");
data.add(0.4, 6, "April");
data.add(0.5, -4, "May");
data.add(0.6, 8, "June");
data.add(0.7, 9, "July");
data.add(0.8, 11, "August");
// Create new bar plot
BarPlot plot = new BarPlot(data);
// Format plot
plot.setInsets(new Insets2D.Double(40.0, 40.0, 40.0, 40.0));
plot.setBarWidth(0.075);
// Format bars
BarRenderer pointRenderer = (BarRenderer) plot.getPointRenderers(data).get(0);
pointRenderer.setColor(
new LinearGradientPaint(0f,0f, 0f,1f,
new float[] { 0.0f, 1.0f },
new Color[] { COLOR1, GraphicsUtils.deriveBrighter(COLOR1) }
)
);
pointRenderer.setBorderStroke(new BasicStroke(3f));
pointRenderer.setBorderColor(
new LinearGradientPaint(0f,0f, 0f,1f,
new float[] { 0.0f, 1.0f },
new Color[] { GraphicsUtils.deriveBrighter(COLOR1), COLOR1 }
)
);
pointRenderer.setValueVisible(true);
pointRenderer.setValueColumn(2);
pointRenderer.setValueLocation(Location.CENTER);
pointRenderer.setValueColor(GraphicsUtils.deriveDarker(COLOR1));
pointRenderer.setValueFont(Font.decode(null).deriveFont(Font.BOLD));
// Add plot to Swing component
add(new InteractivePanel(plot));
}
@Override
public String getTitle() {
return "Bar plot";
}
@Override
public String getDescription() {
return "Bar plot with example data and color gradients";
}
public static void main(String[] args) {
new gral_SimpleBarPlot().showInFrame();
}
}