Remove Border and Margin around iOS Charts in Swift

前端 未结 3 1219
一向
一向 2021-02-19 21:15

I am using iOS Charts with Swift 3, and I can\'t figure out how to do a couple things:

  1. I want to remove the margin around the chart. I know the chart goes edge-

3条回答
  •  余生分开走
    2021-02-19 21:26

    Actually the way to do it is like this:

    chartView.xAxis.enabled = false
    chartView.leftAxis.enabled = false
    chartView.rightAxis.enabled = false
    chartView.drawBordersEnabled = false
    chartView.minOffset = 0
    

提交回复
热议问题