我之前添加了空格,但是 func 使用 trim 可能很有趣。
我需要使用 xAxisFormatter 完成此操作。
val xAxisFormatter = object : ValueFormatter() {
override fun getAxisLabel(value: Float, axis: AxisBase?): String {
val text = if (value > 11) {
""
} else {
" " + labelString
}
return if (0 <= value && value < list.size) {
someText
} else {
""
}
}
}