dataLabelMapper property

ChartValueMapper<T, String>? dataLabelMapper

Implementation

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

Implementation

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