CorePlot图中的外边距

时间:2012-03-27 17:05:13

标签: plot frame core-plot padding margins

有人知道如何摆脱CorePlot图中绘图区域框架的外边距吗?我的iPhone应用程序中没有太多的可用空间来显示它,所以我希望绘图区域框架与整个视图尺寸相匹配。

enter image description here

考虑到: enter image description here

修改填充不会影响外边距,而是影响内边距。 任何建议都会非常感激!

非常感谢!

克劳斯

1 个答案:

答案 0 :(得分:12)

你改变了哪个填充?这应该扩大绘图区域框架以填充空间:

graph.paddingLeft = 0.0;
graph.paddingTop = 0.0;
graph.paddingRight = 0.0;
graph.paddingBottom = 0.0;

埃里克