lowValueMapper property
ChartValueMapper<T, num> ?
get
lowValueMapper
Implementation
ChartValueMapper<T, num>? get lowValueMapper => _lowValueMapper;
set
lowValueMapper
(ChartValueMapper<T, num> ? value)
Implementation
set lowValueMapper(ChartValueMapper<T, num>? value) {
if (_lowValueMapper != value) {
_lowValueMapper = value;
}
}