xValueMapper property

ChartValueMapper<T, D>? xValueMapper

Implementation

ChartValueMapper<T, D>? get xValueMapper => _xValueMapper;
void xValueMapper=(ChartValueMapper<T, D>? value)

Implementation

set xValueMapper(ChartValueMapper<T, D>? value) {
  if (_xValueMapper != value) {
    _xValueMapper = value;
  }
}