Stacked 3d Bar Chart Example using JFreeChart

This Example shows you how to create a Stacked 3d bar chart using JFreeChart. Bar chart will represent the score of two team in different matches.

Stacked 3d Bar Chart Example using JFreeChart

Stacked 3d Bar Chart Example using JFreeChart

     

This Example shows you how to create a Stacked 3d bar chart using JFreeChart. Bar chart will represent the score of two team in different matches.

In the code given below we have extended class ApplicationFrame to create a frame and also pass a string value to the constructor of ApplicationFrame class by using super keyword that will be name of the created frame.

Some methods that are used in this code :
pack(): This method invokes the layout manager.

centerFrameOnScreen(): This method is used for the position of the frame in the middle of the screen.

setVisible(): This method is used for display frame on the screen.

createCategoryDataset(): This method is used to create the instance of CategoryDataset Interface and that contains a copy of the data in an array.

createStackedBarChart3D(): This method is used to create stacked bar chart for given values. It takes title, domain axis label, range axis label, dataset, Plot Orientation, legend, tool tips and urls as parameters.

setBackgroundPaint(): This method is used to set the paint used to fill the chart background.
StackedBarChart.java


import java.awt.Color;

import org.jfree.chart.ChartFactory;
import org.jfree.chart.ChartPanel;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.plot.CategoryPlot;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.data.category.CategoryDataset;
import org.jfree.data.general.DatasetUtilities;
import org.jfree.ui.ApplicationFrame;
import org.jfree.ui.RefineryUtilities;


public class StackedBarChart3D extends ApplicationFrame {

  StackedBarChart1(String titel) {
  super(titel);

  final CategoryDataset dataset = createDataset();
  final JFreeChart chart = createChart(dataset);
  final ChartPanel chartPanel = new ChartPanel(chart);
  chartPanel.setPreferredSize(new java.awt.Dimension(700450));
  setContentPane(chartPanel);
  }

  private CategoryDataset createDataset() {
  double[][] data = new double[][]{
  {210300320265299100200300400200},
  {200304201201340200400200100300},
  {210300320265299100200300400200},
  };
  return DatasetUtilities.createCategoryDataset(
  
"Team """, data);
  }

  private JFreeChart createChart(final CategoryDataset dataset) {

  final JFreeChart chart = 
   ChartFactory.createStackedBarChart3D
(
  "Stacked Bar Chart ""Match""Score",
  dataset, PlotOrientation.VERTICAL, true, true, false);

  chart.setBackgroundPaint(new Color(249231236));

  CategoryPlot plot = chart.getCategoryPlot();
  plot.getRenderer().setSeriesPaint(0new Color(30100175));
  plot.getRenderer().setSeriesPaint(1new Color(90190110));
  plot.getRenderer().setSeriesPaint(2new Color(2254545));

  return chart;
  }

  public static void main(final String[] args) {
  final StackedBarChart3D demo = 
   new 
StackedBarChart3D("Stacked 3D Bar Chart");
  demo.pack();
  RefineryUtilities.centerFrameOnScreen(demo);
  demo.setVisible(true);
  }
}

Output:



Download code