public interface HasDataPoints
Modifier and Type | Method and Description |
---|---|
List<DataPoint> |
getDataPoints()
Returns the data property of a dataset for a chart is specified as an array of data points
|
List<DataPoint> |
getDataPoints(boolean binding)
Returns the data property of a dataset for a chart is specified as an array of data points
|
void |
setDataPoints(DataPoint... datapoints)
Sets the data property of a dataset for a chart is specified as an array of data points.
|
void |
setDataPoints(List<DataPoint> datapoints)
Sets the data property of a dataset for a chart is specified as an array of data points.
|
void setDataPoints(DataPoint... datapoints)
datapoints
- an array of data pointsvoid setDataPoints(List<DataPoint> datapoints)
datapoints
- a list of data pointsList<DataPoint> getDataPoints()
DataType.points
.List<DataPoint> getDataPoints(boolean binding)
binding
- if true
binds the new array list into containerDataType.points
.