如何在 ios 图表中隐藏标签?

How to hide labels in ios-charts?

我需要禁用图表中的某些元素。

我在 (Swift 2) 中使用了 iOS-charts 库,但是我不明白如何禁用以下内容:

  1. 隐藏左右数字

  2. 隐藏描述颜色方块

  3. 隐藏所有竖线

self.chartView.xAxis.drawGridLinesEnabled = false
self.chartView.leftAxis.drawLabelsEnabled = false
self.chartView.legend.enabled = false

会完成任务

只隐藏最上面的:

graphCell.lineChartView.leftAxis.drawTopYLabelEntryEnabled = false
self.chartView.drawEntryLabelsEnabled = false

这将从 PieChart 中隐藏标签并仅显示值。还显示带有标签文本的图例。