Interface ChartDataSource<T>
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetFormulaString()Deprecated.Returns formula representation of the data source.TgetPointAt(int index)Deprecated.Returns point value at specified index.intgetPointCount()Deprecated.Return number of points contained by data source.booleanisNumeric()Deprecated.Returnstrueif data source points should be treated as numbers.booleanisReference()Deprecated.Returnstrueif charts data source is valid cell range. 
 - 
 
- 
- 
Method Detail
- 
getPointCount
int getPointCount()
Deprecated.Return number of points contained by data source.- Returns:
 - number of points contained by data source
 
 
- 
getPointAt
T getPointAt(int index)
Deprecated.Returns point value at specified index.- Parameters:
 index- index to value from- Returns:
 - point value at specified index.
 
 
- 
isReference
boolean isReference()
Deprecated.Returnstrueif charts data source is valid cell range.- Returns:
 trueif charts data source is valid cell range
 
- 
isNumeric
boolean isNumeric()
Deprecated.Returnstrueif data source points should be treated as numbers.- Returns:
 trueif data source points should be treated as numbers
 
- 
getFormulaString
java.lang.String getFormulaString()
Deprecated.Returns formula representation of the data source. It is only applicable for data source that is valid cell range.- Returns:
 - formula representation of the data source
 
 
 - 
 
 -