我想在Barchart的yAxis上显示自己的值,我编写了一个代码段(值格式器),但是使用它时应用程序崩溃了,
public class YAixsFormatter implements IAxisValueFormatter
{
List<String> time;
public YAixsFormatter(List<String> time) {
this.time = time;
}
@Override
public String getFormattedValue(float value, AxisBase axis) {
return time.get((int)value).concat(" mins");
}