I'm trying to follow the tutorial, but Android Studio cannot import any class named AxisValueFormatter.
The guide stated to write this code :
AxisValueFormatter formatter = new AxisValueFormatter() {
@Override
public String getFormattedValue(float value, AxisBase axis) {
return results.get((int) value).getPlayerName();
}
@Override
public int getDecimalDigits() { return 0; }
};
I tried to search for "AxisValueFormatter" in the MPAndroidChart github the MPAndroidChart github, and indeed I couldn't find this exact class (some classes are close though).
Is this a library bug, a guide error or a fault of mine ?
I'm trying to follow the tutorial, but Android Studio cannot import any class named AxisValueFormatter.
The guide stated to write this code :
I tried to search for "AxisValueFormatter" in the MPAndroidChart github the MPAndroidChart github, and indeed I couldn't find this exact class (some classes are close though).
Is this a library bug, a guide error or a fault of mine ?