如何在 MP 图表中为 X 轴设置 axisValueFormatter 以进行颤动。我可以找到 MP chart android 的解决方案,但不适用于颤振,请帮忙。目前我的代码是这样的:
xAxisSettingFunction: (xAxis, controller) {
xAxis
..typeface = Util.BOLD
..textColor = (ColorUtils.WHITE)
..textSize = (11)
..drawGridLines = (true)
..enabled = (true)
..position = (XAxisPosition.BOTTOM)
..axisValueFormatter()
..drawAxisLine = (true);
}