How do remove the border around a core-plot graph

后端 未结 7 1983
北荒
北荒 2021-01-31 18:42

I am trying to remove the border around a core plot graph on the iPhone - but seem to be struggling on what should be simple in my mind.

Pointers please!

7条回答
  •  抹茶落季
    2021-01-31 19:17

    None of the answers worked for me. This did the job:

    graph.paddingLeft = 0;
    graph.paddingRight = 0;
    graph.paddingTop = 0;
    graph.paddingBottom = 0;
    graph.plotAreaFrame.borderWidth = 0;
    graph.plotAreaFrame.cornerRadius = 0;
    

提交回复
热议问题