JFreeChart - Architecture



This chapter explains basic class level and application level architectures of JFreeChart to give you an idea about how JFreeChart interacts with different classes and how it fits in your Java based application.

Class Level Architecture

The class level architecture explains how various classes from the library interact with each other to create various types of charts.

JFreeChart Class Level Architecture

Following is the detail of the units used in the above block diagram −

S.No Units & Description
1

File

The source having user input to be used for creating a dataset in the file.

2

Database

The source having user input to be used for creating a dataset in the database.

3

Create Dataset

Accepts the dataset and stores the dataset into dataset object.

4

General Dataset

This type of dataset is mainly used for pie charts.

5

Category Dataset

This type of dataset is used for bar chart, line chart,etc.

6

Series Dataset

This type of dataset is used for storing series of data and construct line charts.

7

Series Collection Dataset

The different categories of series datasets are added to series collection dataset. This type of dataset is used for XYLine Charts.

8

Create Chart

This is the method which is executed to create final chart.

9

Frame/Image

The chart is displayed on a Swing Frame or an image is created.

Application Level Architecture

The application level architecture explains where JFreeChart library sits inside a Java Application.

JFreeChart Application Level Architecture

The client program receives user data and then it uses standard Java and JFreeChart APIs based on requirements to generate the output in the form of either a frame, which can be displayed directly inside the application or independently in the image formats such as JPEG or PNG.

Advertisements