maxPoints property

int? get maxPoints

Maximum data-points shown in the charts. null keeps the widget default (60).

Implementation

int? get maxPoints => _maxPoints;
set maxPoints (int? value)

Implementation

set maxPoints(int? value) {
  if (_maxPoints == value) return;
  _maxPoints = value;
  notifyListeners();
}