自定义CorePlot gridLineStyle

时间:2013-03-06 16:28:34

标签: iphone ios objective-c cocoa-touch core-plot

在我的CorePlot实现中,我有一个网格线样式,如下所示:

enter image description here

我实现它就像那样简单:

CPTMutableLineStyle *gridLineStyle = [CPTMutableLineStyle lineStyle];
gridLineStyle.lineColor = [CPTColor grayColor];
gridLineStyle.lineWidth = 0.6f;

但是,我想要的是线条样式,如下所示:

enter image description here

有关如何自定义CPTMutableLineStyle以使我的行像这样的任何想法?我没有在CorePlot的CorePlotExamples示例项目中找到任何类似的东西。感谢。

1 个答案:

答案 0 :(得分:2)

Core Plot支持大多数内置Core Graphics线条绘图属性。 dashPattern是您需要的属性。它支持简单的虚线或虚线以及更复杂的虚线模式。

Plot Gallery 示例应用程序中的“控制图”示例显示了几个示例。