| java.lang.Object | |||
| ↳ | org.jfree.data.general.Series | ||
| ↳ | org.jfree.data.ComparableObjectSeries | ||
| ↳ | org.jfree.data.time.ohlc.OHLCSeries | ||
A list of (RegularTimePeriod, open, high, low, close) data items.
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.jfree.data.ComparableObjectSeries
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new empty series.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Adds a data item to the series.
| |||||||||||
Returns the data item at the specified index.
| |||||||||||
Returns the time period for the specified item.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.jfree.data.ComparableObjectSeries
| |||||||||||
From class
org.jfree.data.general.Series
| |||||||||||
From class
java.lang.Object
| |||||||||||
Creates a new empty series. By default, items added to the series will be sorted into ascending order by period, and duplicate periods will not be allowed.
| key | the series key (null not permitted).
|
|---|
Adds a data item to the series.
| period | the period. |
|---|---|
| open | the open-value. |
| high | the high-value. |
| low | the low-value. |
| close | the close-value. |
Returns the data item at the specified index.
| index | the item index. |
|---|
Returns the time period for the specified item.
| index | the item index. |
|---|