yLabels property

List<String>? get yLabels

Labels for the Y axis.

Implementation

List<String>? get yLabels => _yLabels;
set yLabels (List<String>? value)

Implementation

set yLabels(List<String>? value) {
  _yLabels = value;
  notifyListeners();
}