這篇會介紹圖表套件Charts的功能
graphView.leftAxis.enabled = false
左邊的圖示顯示或關閉
graphView.rightAxis.enabled = false
右邊的圖示顯示或關閉
graphView.drawGridBackgroundEnabled = false
背景顯示或關閉
graphView.xAxis.drawGridLinesEnabled = false
背景的線條顯示或關閉
chartData.barWidth = 0.1
直條的寬度
graphView.leftAxis.axisMinimum
圖表最小的高度
graphView.leftAxis.axisMaximum
圖表最高的高度
graphView.isUserInteractionEnabled
能不能與使用者互動
graphView.animate(xAxisDuration: 2.0, yAxisDuration: 2.0, easingOption: .easeInCubic)
顯示圖表時的動畫
let xAxis = graphView.xAxis
xAxis.labelPosition = .bottom //把x軸顯示在下面
xAxis.labelCount = dataPoints.count
xAxis.valueFormatter = IndexAxisValueFormatter(values: dataPoints)
設定x軸的字
以上就是以些常用到的功能。