| Constructor Summary |
|---|
|
No description provided. |
| Method Summary | |
|---|---|
| static JFreeChart |
Creates an area chart with default settings. |
| static JFreeChart |
Creates a bar chart. |
| static JFreeChart |
Creates a bar chart with a 3D effect. |
| static JFreeChart |
Creates and returns a default instance of a box and whisker chart. |
| static JFreeChart |
Creates a bubble chart with default settings. |
| static JFreeChart |
Creates and returns a default instance of a candlesticks chart. |
| static JFreeChart |
Creates a Gantt chart using the supplied attributes plus default values where required. |
| static JFreeChart |
Creates and returns a default instance of a high-low-open-close chart. |
| static JFreeChart |
Creates and returns a default instance of a high-low-open-close chart with a special timeline. |
| static JFreeChart |
Creates a histogram chart. |
| static JFreeChart |
Creates a line chart with default settings. |
| static JFreeChart |
Creates a line chart with default settings. |
| static JFreeChart |
Creates a chart that displays multiple pie plots. |
| static JFreeChart |
Creates a chart that displays multiple pie plots. |
| static JFreeChart |
Creates a pie chart with default settings. |
| static JFreeChart |
Creates a pie chart with default settings that compares 2 datasets. |
| static JFreeChart |
Creates a 3D pie chart using the specified dataset. |
| static JFreeChart |
Creates a polar plot for the specified dataset (x-values interpreted as angles in degrees). |
| static JFreeChart |
Creates a ring chart with default settings. |
| static JFreeChart |
Creates a scatter plot with default settings. |
| static JFreeChart |
Creates a stacked area chart with default settings. |
| static JFreeChart |
Creates a stacked bar chart with default settings. |
| static JFreeChart |
Creates a stacked bar chart with a 3D effect and default settings. |
| static JFreeChart |
Creates a stacked XY area plot. |
| static JFreeChart |
Creates and returns a time series chart. |
| static JFreeChart |
Creates a wafer map chart. |
| static JFreeChart |
Creates a waterfall chart. |
| static JFreeChart |
Creates a wind plot with default settings. |
| static JFreeChart |
Creates an area chart using an XYDataset . |
| static JFreeChart |
Creates and returns a default instance of an XY bar chart. |
| static JFreeChart |
Creates a line chart (based on an XYDataset ) with default settings. |
| static JFreeChart |
Creates a filled stepped XY plot with default settings. |
| static JFreeChart |
Creates a stepped XY plot with default settings. |
| Methods inherited from java.langObject |
|---|
public static
JFreeChart
createAreaChart
(
String
title,
String
categoryAxisLabel,
String
valueAxisLabel,
CategoryDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createBarChart
(
String
title,
String
categoryAxisLabel,
String
valueAxisLabel,
CategoryDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createBarChart3D
(
String
title,
String
categoryAxisLabel,
String
valueAxisLabel,
CategoryDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createBoxAndWhiskerChart
(
String
title,
String
timeAxisLabel,
String
valueAxisLabel,
BoxAndWhiskerXYDataset
dataset,
boolean
legend
)
public static
JFreeChart
createBubbleChart
(
String
title,
String
xAxisLabel,
String
yAxisLabel,
XYZDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createCandlestickChart
(
String
title,
String
timeAxisLabel,
String
valueAxisLabel,
OHLCDataset
dataset,
boolean
legend
)
public static
JFreeChart
createGanttChart
(
String
title,
String
categoryAxisLabel,
String
dateAxisLabel,
IntervalCategoryDataset
dataset,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createHighLowChart
(
String
title,
String
timeAxisLabel,
String
valueAxisLabel,
OHLCDataset
dataset,
boolean
legend
)
public static
JFreeChart
createHighLowChart
(
String
title,
String
timeAxisLabel,
String
valueAxisLabel,
OHLCDataset
dataset,
Timeline
timeline,
boolean
legend
)
public static
JFreeChart
createHistogram
(
String
title,
String
xAxisLabel,
String
yAxisLabel,
IntervalXYDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createLineChart
(
String
title,
String
categoryAxisLabel,
String
valueAxisLabel,
CategoryDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createLineChart3D
(
String
title,
String
categoryAxisLabel,
String
valueAxisLabel,
CategoryDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createMultiplePieChart
(
String
title,
CategoryDataset
dataset,
TableOrder
order,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createMultiplePieChart3D
(
String
title,
CategoryDataset
dataset,
TableOrder
order,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createPieChart
(
String
title,
PieDataset
dataset,
boolean
legend,
boolean
tooltips,
boolean
urls
)
The chart object returned by this method uses a PiePlot instance as the plot.
public static
JFreeChart
createPieChart
(
String
title,
PieDataset
dataset,
PieDataset
previousDataset,
int
percentDiffForMaxScale,
boolean
greenForIncrease,
boolean
legend,
boolean
tooltips,
boolean
urls,
boolean
subTitle,
boolean
showDifference
)
previousDataset. ie if value1 > value2
then the section will be in green (unless greenForIncrease
is false, in which case it would be red).
Each section can have a shade of red or green as the difference can be
tailored between 0% (black) and percentDiffForMaxScale% (bright
red/green).
For instance if percentDiffForMaxScale is 10 (10%), a
difference of 5% will have a half shade of red/green, a difference of
10% or more will have a maximum shade/brightness of red/green.
The chart object returned by this method uses a PiePlot instance as the plot.
Written by Benoit Xhenseval.
public static
JFreeChart
createPieChart3D
(
String
title,
PieDataset
dataset,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createPolarChart
(
String
title,
XYDataset
dataset,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createRingChart
(
String
title,
PieDataset
dataset,
boolean
legend,
boolean
tooltips,
boolean
urls
)
The chart object returned by this method uses a RingPlot instance as the plot.
public static
JFreeChart
createScatterPlot
(
String
title,
String
xAxisLabel,
String
yAxisLabel,
XYDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createStackedAreaChart
(
String
title,
String
categoryAxisLabel,
String
valueAxisLabel,
CategoryDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createStackedBarChart
(
String
title,
String
domainAxisLabel,
String
rangeAxisLabel,
CategoryDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createStackedBarChart3D
(
String
title,
String
categoryAxisLabel,
String
valueAxisLabel,
CategoryDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createStackedXYAreaChart
(
String
title,
String
xAxisLabel,
String
yAxisLabel,
TableXYDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createTimeSeriesChart
(
String
title,
String
timeAxisLabel,
String
valueAxisLabel,
XYDataset
dataset,
boolean
legend,
boolean
tooltips,
boolean
urls
)
A convenient dataset to use with this chart is a TimeSeriesCollection .
public static
JFreeChart
createWaferMapChart
(
String
title,
WaferMapDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createWaterfallChart
(
String
title,
String
categoryAxisLabel,
String
valueAxisLabel,
CategoryDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createWindPlot
(
String
title,
String
xAxisLabel,
String
yAxisLabel,
WindDataset
dataset,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createXYAreaChart
(
String
title,
String
xAxisLabel,
String
yAxisLabel,
XYDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
The chart object returned by this method uses an XYPlot instance as the plot, with a NumberAxis for the domain axis, a NumberAxis as the range axis, and a XYAreaRenderer as the renderer.
public static
JFreeChart
createXYBarChart
(
String
title,
String
xAxisLabel,
boolean
dateAxis,
String
yAxisLabel,
IntervalXYDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
The chart object returned by this method uses an XYPlot instance as the plot, with a DateAxis for the domain axis, a NumberAxis as the range axis, and a XYBarRenderer as the renderer.
public static
JFreeChart
createXYLineChart
(
String
title,
String
xAxisLabel,
String
yAxisLabel,
XYDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createXYStepAreaChart
(
String
title,
String
xAxisLabel,
String
yAxisLabel,
XYDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)
public static
JFreeChart
createXYStepChart
(
String
title,
String
xAxisLabel,
String
yAxisLabel,
XYDataset
dataset,
PlotOrientation
orientation,
boolean
legend,
boolean
tooltips,
boolean
urls
)