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
Deprecated.
As of version 1.0.13. This class will be removed from
JFreeChart 1.2.0 onwards. Anyone needing this facility will need to
maintain it outside of JFreeChart.
|
class |
SubSeriesDataset
Deprecated.
As of version 1.0.13. This class will be removed from
JFreeChart 1.2.0 onwards. Anyone needing this facility will need to
maintain it outside of JFreeChart.
|
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. |