如何在X轴上设置名称在Swift 4上使用图表?

时间:2019-02-12 13:35:40

标签: charts swift4

这是我的询问(已编辑):

我尝试使用图表绘制每月图形,但是将月份的名称放在X轴上会遇到一些困难。我的默认值如下图所示: default value

在使用here提出的最高支持的答案后,我得到了this

因此,在花了几个小时没有结果之后,我想问你是否知道如何获得类似于this one的情节。总结一下:

  1. 在x轴上放置月份的名称(垂直,而不是如图所示)
  2. 在图形的基础上绘制月份名称,而不是在默认值的顶部绘制

先谢谢了。如果您需要我的一些代码,我可以与您分享。

亲切的问候。

1 个答案:

答案 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)