java.lang.Object | |||
↳ | org.jfree.data.general.Series | ||
↳ | org.jfree.data.ComparableObjectSeries | ||
↳ | org.jfree.data.xy.VectorSeries |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new empty series.
| |||||||||||
Constructs a new series that contains no data.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Adds a data item to the series.
| |||||||||||
Returns the data item at the specified index.
| |||||||||||
Returns the x-component of the vector for an item in the series.
| |||||||||||
Returns the y-component of the vector for an item in the series.
| |||||||||||
Returns the x-value for the specified item.
| |||||||||||
Returns the y-value for the specified item.
| |||||||||||
Removes the item at the specified index and sends a
SeriesChangeEvent to all registered listeners. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
Creates a new empty series.
key | the series key (null not permitted).
|
---|
Constructs a new series that contains no data. You can specify whether or not duplicate x-values are allowed for the series.
key | the series key (null not permitted). |
---|---|
autoSort | a flag that controls whether or not the items in the series are sorted. |
allowDuplicateXValues | a flag that controls whether duplicate x-values are allowed. |
Adds a data item to the series.
x | the x-value. |
---|---|
y | the y-value. |
deltaX | the vector x. |
deltaY | the vector y. |
Returns the data item at the specified index.
index | the item index. |
---|
Returns the x-component of the vector for an item in the series.
index | the item index. |
---|
Returns the y-component of the vector for an item in the series.
index | the item index. |
---|
Returns the x-value for the specified item.
index | the item index. |
---|
Returns the y-value for the specified item.
index | the item index. |
---|
Removes the item at the specified index and sends a
SeriesChangeEvent
to all registered listeners.
index | the index. |
---|