getFormattedLabel method

String getFormattedLabel(
  1. int index
)

Implementation

String getFormattedLabel(int index) {
  if (index < 0 || index >= _entries.length) {
    return "";
  } else {
    return getValueFormatter()!.getAxisLabel(_entries[index], this);
  }
}