Uses of Interface
org.jfree.data.HighLowDataset
Package | Description |
---|---|
org.jfree.chart |
Core classes, including
JFreeChart and
ChartPanel . |
org.jfree.chart.demo | |
org.jfree.data |
Data interfaces and classes.
|
-
Uses of HighLowDataset in org.jfree.chart
Methods in org.jfree.chart with parameters of type HighLowDataset Modifier and Type Method Description static JFreeChart
ChartFactory. createCandlestickChart(String title, String timeAxisLabel, String valueAxisLabel, HighLowDataset dataset, boolean legend)
Creates and returns a default instance of a candlesticks chart.static JFreeChart
ChartFactory. createHighLowChart(String title, String timeAxisLabel, String valueAxisLabel, HighLowDataset dataset, boolean legend)
Creates and returns a default instance of a high-low-open-close chart.static JFreeChart
ChartFactory. createHighLowChart(String title, String timeAxisLabel, String valueAxisLabel, HighLowDataset dataset, Timeline timeline, boolean legend)
Creates and returns a default instance of a high-low-open-close chart with a special timeline. -
Uses of HighLowDataset in org.jfree.chart.demo
Methods in org.jfree.chart.demo that return HighLowDataset Modifier and Type Method Description static HighLowDataset
DemoDatasetFactory. createHighLowDataset()
Creates a sample high low dataset.static HighLowDataset
DemoDatasetFactory. createSegmentedHighLowDataset(SegmentedTimeline timeline, Date start)
Creates a sample high low dataset for a SegmentedTimeline -
Uses of HighLowDataset in org.jfree.data
Classes in org.jfree.data that implement HighLowDataset Modifier and Type Class Description class
CombinedDataset
This class can combine instances ofXYDataset
,HighLowDataset
andIntervalXYDataset
together exposing the union of all the series under one dataset.class
DefaultHighLowDataset
A simple implementation of theHighLowDataset
.class
OHLCDataset
A simple implementation of theHighLowDataset
interface.class
SubSeriesDataset
This class will create a dataset with one or more series from anotherSeriesDataset
.