| Package | Description |
|---|---|
| org.jfree.chart |
Core classes, including
JFreeChart and
ChartPanel. |
| org.jfree.data.general |
Data interfaces and classes.
|
| org.jfree.data.time.ohlc |
Classes for representing financial data in open-high-low-close form.
|
| org.jfree.data.xy |
A package containing the
XYDataset interface and related classes. |
| Modifier and Type | Method and Description |
|---|---|
static JFreeChart |
ChartFactory.createCandlestickChart(java.lang.String title,
java.lang.String timeAxisLabel,
java.lang.String valueAxisLabel,
OHLCDataset dataset,
boolean legend)
Creates and returns a default instance of a candlesticks chart.
|
static JFreeChart |
ChartFactory.createHighLowChart(java.lang.String title,
java.lang.String timeAxisLabel,
java.lang.String valueAxisLabel,
OHLCDataset dataset,
boolean legend)
Creates and returns a default instance of a high-low-open-close chart.
|
static JFreeChart |
ChartFactory.createHighLowChart(java.lang.String title,
java.lang.String timeAxisLabel,
java.lang.String valueAxisLabel,
OHLCDataset dataset,
Timeline timeline,
boolean legend)
Creates and returns a default instance of a high-low-open-close chart
with a special timeline.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CombinedDataset
This class can combine instances of
XYDataset, OHLCDataset
and IntervalXYDataset together exposing the union of all the series
under one dataset. |
class |
SubSeriesDataset
This class will create a dataset with one or more series from another
SeriesDataset. |
| Modifier and Type | Class and Description |
|---|---|
class |
OHLCSeriesCollection
A collection of
OHLCSeries objects. |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultHighLowDataset
A simple implementation of the
OHLCDataset interface. |
class |
DefaultOHLCDataset
A simple implementation of the
OHLCDataset interface. |