public interface AbstractChartData<N extends java.lang.Number>
Modifier and Type | Method and Description |
---|---|
N |
getDataValue(int index)
Should return the data value at a given index.
|
N |
getHighestDataValue()
Should return the highest data value.
|
int |
getNumOfData()
Should return the number of data for this chart.
|
Model |
getOwnerModel()
Should return the owner Model this chart data is associated to.
|
boolean |
isEmpty()
Should return whether this chart data is empty or not.
|
N getHighestDataValue()
int getNumOfData()
N getDataValue(int index)
0
should be returned.index
- Model getOwnerModel()
boolean isEmpty()
true
if this.getNumOfData()==0
,
else should return false
.