yValueMapper property

ChartValueMapper<T, num>? yValueMapper

Implementation

ChartValueMapper<T, num>? get yValueMapper => _yValueMapper;
void yValueMapper=(ChartValueMapper<T, num>? value)

Implementation

set yValueMapper(ChartValueMapper<T, num>? value) {
  if (_yValueMapper != value) {
    _yValueMapper = value;
  }
}