plotPoints method
void
plotPoints(
- dynamic dataList
Implementation
void plotPoints(dynamic dataList) {
xValues.clear();
labels.clear();
lineDataPoint.clear();
for (var i = 0; i < dataList.length; i++) {
//set the data of the series for databinding
data = dataList[i];
//plot the point as a point object based on the desired function based on series and chart type.
plot(this, data);
}
dataList = null;
}