SlideShare a Scribd company logo
JFreeChart Tutorial
Uses
Download Location
How To Install / Get Started
Types of Graphs Constructed with JFreeChart
- 1 -
Matthew D’Andrea | E-mail: matthew.dandrea@utoronto.ca
JFreeChart is an open source library available for Java that allows users to easily generate graphs and
charts. It is particularly effective for when a user needs to regenerate graphs that change on a
frequent basis (as required for the CSC408 course project).
This tutorial will examine how to create images from these graphs which can then be displayed
on web pages.
JFreeChart is available for download from:
http://sourceforge.net/project/showfiles.php?group_id=15494&package_id=12428
I recommend downloading either 1.0.0-pre1 or Version 0.9.21.
Unpack JFreeChart into a temporary directory.
I will briefly outline the steps needed to setup a Java project in Eclipse so that you can create your own
JFreeChart graphs.
You will then be able to test out the code provided in the “Example Graphs” section.
Steps:
1. Start Eclipse 3.0. (If you do not have Eclipse installed, visit www.eclipse.org.)
2. Go to File -> New -> Project....
3. Select “Java Project” and click on Next. Enter in a project name and click Finish.
4. Select the project in the Package Explorer view. Go to Project -> Properties.
5. Click on “Java Build Path” on the left-hand side of the dialog box and on the right-hand side
click on the “Libraries” tab.
6. Click on “Add External JARs...” and locate jfreechart-1.0.0-pre1.jar and jcommon-1.0.0-common.jar.
Click on OK.
7. Select the project in the Package Explorer view. Go to File -> New -> Package. Give the package
a name and click on Finish.
8. Select the newly-created package in the Package Explorer view. Go to File -> New -> Class. Give the
class a name and click on Finish.
9. You are now ready to start using the JFreeChart library!
We will consider the following graphs that can be created using JFreeChart:
- Pie Chart - Time Series Chart
- XY Chart
- Bar Chart
- 2 -
Example Graphs
Suppose that we want to construct a Pie Chart that reflects the percentage of marks that are in the
A, B, C, and D range for CSC408. (You’ll notice that the distribution is rather hopeful. :))
package main;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.ChartUtilities;
import org.jfree.chart.ChartFactory;
import org.jfree.data.general.DefaultPieDataset;
import java.io.File;
public class PieChartExample {
public static void main(String[] args) {
// Create a simple pie chart
DefaultPieDataset pieDataset = new DefaultPieDataset();
pieDataset.setValue("A", new Integer(75));
pieDataset.setValue("B", new Integer(10));
pieDataset.setValue("C", new Integer(10));
pieDataset.setValue("D", new Integer(5));
JFreeChart chart = ChartFactory.createPieChart
("CSC408 Mark Distribution", // Title
pieDataset, // Dataset
true, // Show legend
true, // Use tooltips
false // Configure chart to generate URLs?
);
try {
ChartUtilities.saveChartAsJPEG(new File("C:chart.jpg"), chart, 500, 300);
} catch (Exception e) {
System.out.println("Problem occurred creating chart.");
}
}
}
Code:
Graph:
1. Pie Chart Example
- 3 -
Explanation:
To define a data set for a pie chart we create an instance of type DefaultPieDataSet.
DefaultPieDataset pieDataset = new DefaultPieDataset();
The setValue() method is used to set the name of a piece of the pie (e.g. “A”) and its corresponding percentage
(e.g. 75) value.
PieDataset.setValue(’A”, new Integer(75));
A graph object of type JFreeChart is generated using one of the ChartFactory methods and passing the data set
as one of the arguments. In this case, we use the createPieChart() method to produce a pie chart.
Modification: Use createPieChart3D() to produce a corresponding 3D version of the pie chart.
JFreeChart chart = ChartFactory.createPieChart3D(”CSC408 Mark Distribution”, pieDataset,
true, true, false);
A JPEG image of the graph is produced using the ChartUtilities method saveChartAsJPEG().
ChartUtilities.saveChartAsJPEG(new File(”C:chart.jpg”), chart, 500, 300);
Modification: To generate a PNG image use the method saveChartAsPNG().
Suppose that we want to construct a line with the following set of (x, y) coordinates:
{(1, 1), (1, 2), (2, 1), (3, 9), (4, 10)}.
2. XY Chart Example
public class XYChartExample {
public static void main(String[] args) {
// Create a simple XY chart
XYSeries series = new XYSeries("XYGraph");
series.add(1, 1);
series.add(1, 2);
series.add(2, 1);
series.add(3, 9);
series.add(4, 10);
// Add the series to your data set
XYSeriesCollection dataset = new XYSeriesCollection();
dataset.addSeries(series);
// Generate the graph
JFreeChart chart = ChartFactory.createXYLineChart(
"XY Chart", // Title
"x-axis", // x-axis Label
"y-axis", // y-axis Label
dataset, // Dataset
PlotOrientation.VERTICAL, // Plot Orientation
true, // Show Legend
true, // Use tooltips
false // Configure chart to generate URLs?
);
try {
ChartUtilities.saveChartAsJPEG(new File("C:chart.jpg"), chart, 500, 300);
} catch (IOException e) {
System.err.println("Problem occurred creating chart.");
}
}
}
Code:
- 4 -
Graph:
Explanation:
To define a set of (x, y) coordinates, use an object of class XYSeries.
XYSeries series = new XYSeries("XYGraph");
Add the series to your data set of type XYSeriesCollection.
dataset.addSeries(series);
Note: Multiple series (lines) can be added to one data set. Use this feature if you want more than
one line to appear on the same graph.
A graph object of type JFreeChart is generated using the ChartFactory method createXYLineChart().
Note the extra arguments that did not appear for a pie chart. The 2nd and 3rd arguments specify
the label for the x and y axes.
Meaning of Plot Orientation:
PlotOrientation.VERTICAL - y-axis is displayed as the vertical axis
PlotOrientation.HORIZONTAL - x-axis becomes the vertical axis
Modification:
In the current code, we used the createXYLineChart() method to display a line of data in the graph.
As an alternative, the method createXYAreaChart() could be used to display the area under the line
of data.
It is possible to modify the graph to show each of the 5 data points:
XYItemRenderer rend = chart.getXYPlot().getRenderer();
StandardXYItemRenderer rr = (StandardXYItemRenderer)rend;
rr.setPlotShapes(true);
Change to
Area Chart
Mark data
points
- 5 -
Suppose that we want to construct a bar graph which compares the profits taken in
by the following salesmen: Jane, Tom, Jill, John, Fred.
3. Bar Chart Example
public class BarChartExample {
public static void main(String[] args) {
// Create a simple Bar chart
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
dataset.setValue(6, "Profit", "Jane");
dataset.setValue(7, "Profit", "Tom");
dataset.setValue(8, "Profit", "Jill");
dataset.setValue(5, "Profit", "John");
dataset.setValue(12, "Profit", "Fred");
JFreeChart chart = ChartFactory.createBarChart("Comparison between Salesman",
"Salesman", "Profit", dataset, PlotOrientation.VERTICAL,
false, true, false);
try {
ChartUtilities.saveChartAsJPEG(new File("C:chart.jpg"), chart, 500, 300);
} catch (IOException e) {
System.err.println("Problem occurred creating chart.");
}
}
}
Code:
Graph:
Explanation:
To define a data set for a bar graph use an object of class DefaultCategoryDataset.
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
Values can be added to the data set using the setValue() method.
dataset.setValue(6, “Profit”, “Jane”);
The first argument specifies the level of profit achieved by Jane. The second argument specifies
what will appear in the legend for the meaning of a bar.
To generate a bar graph object of class JFreeChart, the method createBarChart() of
ChartFactory is used. It takes the same set of arguments as that required by
createXYLineChart(). The 1st argument denotes the title of the graph, the second
the label for the x-axis, the third the label for the y-axis.
JFreeChart chart = ChartFactory.createBarChart("Comparison between Salesman",
"Salesman", "Profit", dataset, PlotOrientation.VERTICAL, false, true, false);
Modification: As was the case with pie charts, it is possible to display the bars in 3D using the createBarChart3D() method.
- 6 -
Modification:
It is possible to introduce more than one set of bars to the same graph.
This can be introduced with the following modification:
DefaultCategoryDataset dataset = new DefaultCategoryDataset();
dataset.setValue(6, "Profit1", "Jane");
dataset.setValue(3, "Profit2", "Jane");
dataset.setValue(7, "Profit1", "Tom");
dataset.setValue(10, "Profit2", "Tom");
dataset.setValue(8, "Profit1", "Jill");
dataset.setValue(8, "Profit2", "Jill");
dataset.setValue(5, "Profit1", "John");
dataset.setValue(6, "Profit2", "John");
dataset.setValue(12, "Profit1", "Fred");
dataset.setValue(5, "Profit2", "Fred");
// Profit1, Profit2 represent the row keys
// Jane, Tom, Jill, etc. represent the column keys
JFreeChart chart = ChartFactory.createBarChart3D( "Comparison between Salesman",
"Salesman", "Value ($)", dataset, PlotOrientation.VERTICAL, true, true, false );
One thing that might be worthwhile is to adjust the appearance of the graph (e.g. colour).
chart.setBackgroundPaint(Color.yellow); // Set the background colour of the chart
chart.getTitle().setPaint(Color.blue); // Adjust the colour of the title
CategoryPlot p = chart.getCategoryPlot(); // Get the Plot object for a bar graph
p.setBackgroundPaint(Color.black); // Modify the plot background
p.setRangeGridlinePaint(Color.red); // Modify the colour of the plot gridlines
Modify Chart
Appearance
Add extra
bar
Suppose that we want to monitor the population of a small town over monthly intervals.
4. Time Series Example
public class TimeSeriesExample {
public static void main(String[] args) {
// Create a time series chart
TimeSeries pop = new TimeSeries("Population", Day.class);
pop.add(new Day(10, 1, 2004), 100);
pop.add(new Day(10, 2, 2004), 150);
pop.add(new Day(10, 3, 2004), 250);
pop.add(new Day(10, 4, 2004), 275);
pop.add(new Day(10, 5, 2004), 325);
Code:
- 7 -
pop.add(new Day(10, 6, 2004), 425);
TimeSeriesCollection dataset = new TimeSeriesCollection();
dataset.addSeries(pop);
JFreeChart chart = ChartFactory.createTimeSeriesChart(
"Population of CSC408 Town",
"Date",
"Population",
dataset,
true,
true,
false);
try {
ChartUtilities.saveChartAsJPEG(new File("C:chart.jpg"), chart, 500, 300);
} catch (IOException e) {
System.err.println("Problem occurred creating chart.");
}
}
}
Graph:
Explanation:
A Time Series represents a single set of values over some time period.
To define a data set for a time series graph use an object of class TimeSeries.
The second argument to the constructor defines the type of time period that this series represents.
Valid values are classes that extend org.jfree.data.time.RegularTimePeriod and can be found under
the org.jfree.data.time package (e.g. org.jfree.data.time.Day).
TimeSeries pop = new TimeSeries("Population", Day.class);
JFreeChart graphs plot data sets that implement org.jfree.data.general.DataSet.
For Time Series charts, there are x and y axes, so we need to construct an XYDataset.
Class TimeSeriesCollection implements the XYDataset interface.
TimeSeriesCollection dataset = new TimeSeriesCollection();
The addSeries() method is used to add a TimeSeries to the collection.
dataset.addSeries(pop);
- 8 -
References
http://www.jfree.org/jfreechart/jfreechart-0.9.21-install.pdf
http://www.javaworld.com/javaworld/jw-12-2002/jw-1227-opensourceprofile.html
http://www.informit.com/guides/content.asp?g=java&seqNum=74
http://tools.devchannel.org/devtoolschannel/04/03/12/1634222.shtml
Modification:
Like with bar graphs and XY charts, it is possible to plot two different
TimeSeries instances on the same chart.
Add extra
time line
TimeSeries pop2 = new TimeSeries("Population2", Day.class);
pop2.add(new Day(20, 1, 2004), 200);
pop2.add(new Day(20, 2, 2004), 250);
pop2.add(new Day(20, 3, 2004), 450);
pop2.add(new Day(20, 4, 2004), 475);
pop2.add(new Day(20, 5, 2004), 125);
dataset.addSeries(pop2);
Date
Modification
We can override the display format of the date on the domain axis
by casting it to a DateAxis.
XYPlot plot = chart.getXYPlot();
DateAxis axis = (DateAxis) plot.getDomainAxis();
axis.setDateFormatOverride(new SimpleDateFormat(”dd-MM-yyyy”));

More Related Content

PPTX
PDF
medicalterminationofpregnancyact1971-211124071122.pdf
PDF
APPROCHE INTERCULTURELLE DANS L’ENSEIGNEMENT DU FLE AUX ÉTUDIANTS EN PREMIÈRE...
PDF
Java Garbage Collection
KEY
Building University Websites with the Drupal Content Management System
PDF
Creating Dynamic Charts With JFreeChart
PPTX
medicalterminationofpregnancyact1971-211124071122.pdf
APPROCHE INTERCULTURELLE DANS L’ENSEIGNEMENT DU FLE AUX ÉTUDIANTS EN PREMIÈRE...
Java Garbage Collection
Building University Websites with the Drupal Content Management System
Creating Dynamic Charts With JFreeChart

Similar to Jfreechart tutorial (20)

PPTX
Moving from JFreeChart to JavaFX with JavaFX Chart Extensions
PDF
import java.awt.Color; import java.awt.Dimension; import.pdf
PPTX
Exploiting JXL using Selenium
PDF
Dynamic Graph Plotting with WPF
PDF
Gephi Toolkit Tutorial
DOCX
Teaching Case Teaching Software Componentization .docx
PPTX
Java Core | JavaFX 2.0: Great User Interfaces in Java | Simon Ritter
PPT
13slide graphics
PDF
JavaFX, because you're worth it
ODP
Joeffice Day 12: Charts
PDF
This is Function Class public abstract class Function {    .pdf
PPTX
Open Source Web Charts
PPTX
Graphic aids 1. chart A lecture By Allah Dad Khan VP The University Of Agric...
PDF
FusionCharts Suite XT Product Brochure
PPTX
Ppt02 tabular&graphical
KEY
Processing & Dataviz
PDF
Devoxx MA 2015 - Turn you java objects into binary
PDF
Grapher final
DOCX
Design PatternsChristian Behrenshttpswww.behance.netgall.docx
PPTX
UNIT_4_data visualization.pptx
Moving from JFreeChart to JavaFX with JavaFX Chart Extensions
import java.awt.Color; import java.awt.Dimension; import.pdf
Exploiting JXL using Selenium
Dynamic Graph Plotting with WPF
Gephi Toolkit Tutorial
Teaching Case Teaching Software Componentization .docx
Java Core | JavaFX 2.0: Great User Interfaces in Java | Simon Ritter
13slide graphics
JavaFX, because you're worth it
Joeffice Day 12: Charts
This is Function Class public abstract class Function {    .pdf
Open Source Web Charts
Graphic aids 1. chart A lecture By Allah Dad Khan VP The University Of Agric...
FusionCharts Suite XT Product Brochure
Ppt02 tabular&graphical
Processing & Dataviz
Devoxx MA 2015 - Turn you java objects into binary
Grapher final
Design PatternsChristian Behrenshttpswww.behance.netgall.docx
UNIT_4_data visualization.pptx
Ad

Recently uploaded (20)

PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
A Presentation on Artificial Intelligence
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPT
Teaching material agriculture food technology
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
sap open course for s4hana steps from ECC to s4
PPTX
Spectroscopy.pptx food analysis technology
DOCX
The AUB Centre for AI in Media Proposal.docx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Machine Learning_overview_presentation.pptx
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Empathic Computing: Creating Shared Understanding
PDF
Encapsulation theory and applications.pdf
Encapsulation_ Review paper, used for researhc scholars
A Presentation on Artificial Intelligence
“AI and Expert System Decision Support & Business Intelligence Systems”
Teaching material agriculture food technology
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
NewMind AI Weekly Chronicles - August'25-Week II
Per capita expenditure prediction using model stacking based on satellite ima...
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
sap open course for s4hana steps from ECC to s4
Spectroscopy.pptx food analysis technology
The AUB Centre for AI in Media Proposal.docx
Diabetes mellitus diagnosis method based random forest with bat algorithm
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Machine Learning_overview_presentation.pptx
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Mobile App Security Testing_ A Comprehensive Guide.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Empathic Computing: Creating Shared Understanding
Encapsulation theory and applications.pdf
Ad

Jfreechart tutorial

  • 1. JFreeChart Tutorial Uses Download Location How To Install / Get Started Types of Graphs Constructed with JFreeChart - 1 - Matthew D’Andrea | E-mail: matthew.dandrea@utoronto.ca JFreeChart is an open source library available for Java that allows users to easily generate graphs and charts. It is particularly effective for when a user needs to regenerate graphs that change on a frequent basis (as required for the CSC408 course project). This tutorial will examine how to create images from these graphs which can then be displayed on web pages. JFreeChart is available for download from: http://sourceforge.net/project/showfiles.php?group_id=15494&package_id=12428 I recommend downloading either 1.0.0-pre1 or Version 0.9.21. Unpack JFreeChart into a temporary directory. I will briefly outline the steps needed to setup a Java project in Eclipse so that you can create your own JFreeChart graphs. You will then be able to test out the code provided in the “Example Graphs” section. Steps: 1. Start Eclipse 3.0. (If you do not have Eclipse installed, visit www.eclipse.org.) 2. Go to File -> New -> Project.... 3. Select “Java Project” and click on Next. Enter in a project name and click Finish. 4. Select the project in the Package Explorer view. Go to Project -> Properties. 5. Click on “Java Build Path” on the left-hand side of the dialog box and on the right-hand side click on the “Libraries” tab. 6. Click on “Add External JARs...” and locate jfreechart-1.0.0-pre1.jar and jcommon-1.0.0-common.jar. Click on OK. 7. Select the project in the Package Explorer view. Go to File -> New -> Package. Give the package a name and click on Finish. 8. Select the newly-created package in the Package Explorer view. Go to File -> New -> Class. Give the class a name and click on Finish. 9. You are now ready to start using the JFreeChart library! We will consider the following graphs that can be created using JFreeChart: - Pie Chart - Time Series Chart - XY Chart - Bar Chart
  • 2. - 2 - Example Graphs Suppose that we want to construct a Pie Chart that reflects the percentage of marks that are in the A, B, C, and D range for CSC408. (You’ll notice that the distribution is rather hopeful. :)) package main; import org.jfree.chart.JFreeChart; import org.jfree.chart.ChartUtilities; import org.jfree.chart.ChartFactory; import org.jfree.data.general.DefaultPieDataset; import java.io.File; public class PieChartExample { public static void main(String[] args) { // Create a simple pie chart DefaultPieDataset pieDataset = new DefaultPieDataset(); pieDataset.setValue("A", new Integer(75)); pieDataset.setValue("B", new Integer(10)); pieDataset.setValue("C", new Integer(10)); pieDataset.setValue("D", new Integer(5)); JFreeChart chart = ChartFactory.createPieChart ("CSC408 Mark Distribution", // Title pieDataset, // Dataset true, // Show legend true, // Use tooltips false // Configure chart to generate URLs? ); try { ChartUtilities.saveChartAsJPEG(new File("C:chart.jpg"), chart, 500, 300); } catch (Exception e) { System.out.println("Problem occurred creating chart."); } } } Code: Graph: 1. Pie Chart Example
  • 3. - 3 - Explanation: To define a data set for a pie chart we create an instance of type DefaultPieDataSet. DefaultPieDataset pieDataset = new DefaultPieDataset(); The setValue() method is used to set the name of a piece of the pie (e.g. “A”) and its corresponding percentage (e.g. 75) value. PieDataset.setValue(’A”, new Integer(75)); A graph object of type JFreeChart is generated using one of the ChartFactory methods and passing the data set as one of the arguments. In this case, we use the createPieChart() method to produce a pie chart. Modification: Use createPieChart3D() to produce a corresponding 3D version of the pie chart. JFreeChart chart = ChartFactory.createPieChart3D(”CSC408 Mark Distribution”, pieDataset, true, true, false); A JPEG image of the graph is produced using the ChartUtilities method saveChartAsJPEG(). ChartUtilities.saveChartAsJPEG(new File(”C:chart.jpg”), chart, 500, 300); Modification: To generate a PNG image use the method saveChartAsPNG(). Suppose that we want to construct a line with the following set of (x, y) coordinates: {(1, 1), (1, 2), (2, 1), (3, 9), (4, 10)}. 2. XY Chart Example public class XYChartExample { public static void main(String[] args) { // Create a simple XY chart XYSeries series = new XYSeries("XYGraph"); series.add(1, 1); series.add(1, 2); series.add(2, 1); series.add(3, 9); series.add(4, 10); // Add the series to your data set XYSeriesCollection dataset = new XYSeriesCollection(); dataset.addSeries(series); // Generate the graph JFreeChart chart = ChartFactory.createXYLineChart( "XY Chart", // Title "x-axis", // x-axis Label "y-axis", // y-axis Label dataset, // Dataset PlotOrientation.VERTICAL, // Plot Orientation true, // Show Legend true, // Use tooltips false // Configure chart to generate URLs? ); try { ChartUtilities.saveChartAsJPEG(new File("C:chart.jpg"), chart, 500, 300); } catch (IOException e) { System.err.println("Problem occurred creating chart."); } } } Code:
  • 4. - 4 - Graph: Explanation: To define a set of (x, y) coordinates, use an object of class XYSeries. XYSeries series = new XYSeries("XYGraph"); Add the series to your data set of type XYSeriesCollection. dataset.addSeries(series); Note: Multiple series (lines) can be added to one data set. Use this feature if you want more than one line to appear on the same graph. A graph object of type JFreeChart is generated using the ChartFactory method createXYLineChart(). Note the extra arguments that did not appear for a pie chart. The 2nd and 3rd arguments specify the label for the x and y axes. Meaning of Plot Orientation: PlotOrientation.VERTICAL - y-axis is displayed as the vertical axis PlotOrientation.HORIZONTAL - x-axis becomes the vertical axis Modification: In the current code, we used the createXYLineChart() method to display a line of data in the graph. As an alternative, the method createXYAreaChart() could be used to display the area under the line of data. It is possible to modify the graph to show each of the 5 data points: XYItemRenderer rend = chart.getXYPlot().getRenderer(); StandardXYItemRenderer rr = (StandardXYItemRenderer)rend; rr.setPlotShapes(true); Change to Area Chart Mark data points
  • 5. - 5 - Suppose that we want to construct a bar graph which compares the profits taken in by the following salesmen: Jane, Tom, Jill, John, Fred. 3. Bar Chart Example public class BarChartExample { public static void main(String[] args) { // Create a simple Bar chart DefaultCategoryDataset dataset = new DefaultCategoryDataset(); dataset.setValue(6, "Profit", "Jane"); dataset.setValue(7, "Profit", "Tom"); dataset.setValue(8, "Profit", "Jill"); dataset.setValue(5, "Profit", "John"); dataset.setValue(12, "Profit", "Fred"); JFreeChart chart = ChartFactory.createBarChart("Comparison between Salesman", "Salesman", "Profit", dataset, PlotOrientation.VERTICAL, false, true, false); try { ChartUtilities.saveChartAsJPEG(new File("C:chart.jpg"), chart, 500, 300); } catch (IOException e) { System.err.println("Problem occurred creating chart."); } } } Code: Graph: Explanation: To define a data set for a bar graph use an object of class DefaultCategoryDataset. DefaultCategoryDataset dataset = new DefaultCategoryDataset(); Values can be added to the data set using the setValue() method. dataset.setValue(6, “Profit”, “Jane”); The first argument specifies the level of profit achieved by Jane. The second argument specifies what will appear in the legend for the meaning of a bar. To generate a bar graph object of class JFreeChart, the method createBarChart() of ChartFactory is used. It takes the same set of arguments as that required by createXYLineChart(). The 1st argument denotes the title of the graph, the second the label for the x-axis, the third the label for the y-axis. JFreeChart chart = ChartFactory.createBarChart("Comparison between Salesman", "Salesman", "Profit", dataset, PlotOrientation.VERTICAL, false, true, false); Modification: As was the case with pie charts, it is possible to display the bars in 3D using the createBarChart3D() method.
  • 6. - 6 - Modification: It is possible to introduce more than one set of bars to the same graph. This can be introduced with the following modification: DefaultCategoryDataset dataset = new DefaultCategoryDataset(); dataset.setValue(6, "Profit1", "Jane"); dataset.setValue(3, "Profit2", "Jane"); dataset.setValue(7, "Profit1", "Tom"); dataset.setValue(10, "Profit2", "Tom"); dataset.setValue(8, "Profit1", "Jill"); dataset.setValue(8, "Profit2", "Jill"); dataset.setValue(5, "Profit1", "John"); dataset.setValue(6, "Profit2", "John"); dataset.setValue(12, "Profit1", "Fred"); dataset.setValue(5, "Profit2", "Fred"); // Profit1, Profit2 represent the row keys // Jane, Tom, Jill, etc. represent the column keys JFreeChart chart = ChartFactory.createBarChart3D( "Comparison between Salesman", "Salesman", "Value ($)", dataset, PlotOrientation.VERTICAL, true, true, false ); One thing that might be worthwhile is to adjust the appearance of the graph (e.g. colour). chart.setBackgroundPaint(Color.yellow); // Set the background colour of the chart chart.getTitle().setPaint(Color.blue); // Adjust the colour of the title CategoryPlot p = chart.getCategoryPlot(); // Get the Plot object for a bar graph p.setBackgroundPaint(Color.black); // Modify the plot background p.setRangeGridlinePaint(Color.red); // Modify the colour of the plot gridlines Modify Chart Appearance Add extra bar Suppose that we want to monitor the population of a small town over monthly intervals. 4. Time Series Example public class TimeSeriesExample { public static void main(String[] args) { // Create a time series chart TimeSeries pop = new TimeSeries("Population", Day.class); pop.add(new Day(10, 1, 2004), 100); pop.add(new Day(10, 2, 2004), 150); pop.add(new Day(10, 3, 2004), 250); pop.add(new Day(10, 4, 2004), 275); pop.add(new Day(10, 5, 2004), 325); Code:
  • 7. - 7 - pop.add(new Day(10, 6, 2004), 425); TimeSeriesCollection dataset = new TimeSeriesCollection(); dataset.addSeries(pop); JFreeChart chart = ChartFactory.createTimeSeriesChart( "Population of CSC408 Town", "Date", "Population", dataset, true, true, false); try { ChartUtilities.saveChartAsJPEG(new File("C:chart.jpg"), chart, 500, 300); } catch (IOException e) { System.err.println("Problem occurred creating chart."); } } } Graph: Explanation: A Time Series represents a single set of values over some time period. To define a data set for a time series graph use an object of class TimeSeries. The second argument to the constructor defines the type of time period that this series represents. Valid values are classes that extend org.jfree.data.time.RegularTimePeriod and can be found under the org.jfree.data.time package (e.g. org.jfree.data.time.Day). TimeSeries pop = new TimeSeries("Population", Day.class); JFreeChart graphs plot data sets that implement org.jfree.data.general.DataSet. For Time Series charts, there are x and y axes, so we need to construct an XYDataset. Class TimeSeriesCollection implements the XYDataset interface. TimeSeriesCollection dataset = new TimeSeriesCollection(); The addSeries() method is used to add a TimeSeries to the collection. dataset.addSeries(pop);
  • 8. - 8 - References http://www.jfree.org/jfreechart/jfreechart-0.9.21-install.pdf http://www.javaworld.com/javaworld/jw-12-2002/jw-1227-opensourceprofile.html http://www.informit.com/guides/content.asp?g=java&seqNum=74 http://tools.devchannel.org/devtoolschannel/04/03/12/1634222.shtml Modification: Like with bar graphs and XY charts, it is possible to plot two different TimeSeries instances on the same chart. Add extra time line TimeSeries pop2 = new TimeSeries("Population2", Day.class); pop2.add(new Day(20, 1, 2004), 200); pop2.add(new Day(20, 2, 2004), 250); pop2.add(new Day(20, 3, 2004), 450); pop2.add(new Day(20, 4, 2004), 475); pop2.add(new Day(20, 5, 2004), 125); dataset.addSeries(pop2); Date Modification We can override the display format of the date on the domain axis by casting it to a DateAxis. XYPlot plot = chart.getXYPlot(); DateAxis axis = (DateAxis) plot.getDomainAxis(); axis.setDateFormatOverride(new SimpleDateFormat(”dd-MM-yyyy”));