dataPoints property

Map<String, double> get dataPoints

Implementation

Map<String, double> get dataPoints => _dataPoints;
set dataPoints (Map<String, double> value)

Implementation

set dataPoints(Map<String, double> value) {
  _dataPoints = _scale(value);
  drawDataPoints();
  drawLabels();
}