dataLabelMapper property

ChartValueMapper<T, String>? get dataLabelMapper

Implementation

ChartValueMapper<T, String>? get dataLabelMapper => _dataLabelMapper;
set dataLabelMapper (ChartValueMapper<T, String>? value)

Implementation

set dataLabelMapper(ChartValueMapper<T, String>? value) {
  if (_dataLabelMapper != value) {
    _dataLabelMapper = value;
  }
}