这是我的询问(已编辑):
我尝试使用图表绘制每月图形,但是将月份的名称放在X轴上会遇到一些困难。我的默认值如下图所示: default value
因此,在花了几个小时没有结果之后,我想问你是否知道如何获得类似于this one的情节。总结一下:
先谢谢了。如果您需要我的一些代码,我可以与您分享。
亲切的问候。
答案 0 :(得分:0)
经过反复研究并进行了更好的研究,这是我的问题的答案:
//Give the value of the months to the x axis
barChart.xAxis.valueFormatter = IndexAxisValueFormatter(values:months)
barChart.xAxis.granularity = 1
//Position of the x axis, rotation of the labels on the x axis and show all the names of the months consecutively
barChart.xAxis.labelPosition = XAxis.LabelPosition.bottom
barChart.xAxis.labelRotationAngle = -90.0
barChart.xAxis.setLabelCount(counter, force: false)