yAxisName property

String? get yAxisName
inherited

Implementation

String? get yAxisName => _yAxisName;
set yAxisName (String? value)
inherited

Implementation

set yAxisName(String? value) {
  if (_yAxisName != value) {
    _yAxisName = value;
  }
}