非连续 CorePlot 线图(如 y = 1/x 的图)
我正在编写一个 iPhone 应用程序,它使用 CorePlot 来绘制线图(使用 CPScatterPlot
)。我需要绘制不连续的线图(例如 y=1/x 或 y=floor(x))。
我该怎么做呢?任何建议将不胜感激。
I am writing an iPhone app that uses CorePlot for graphing a line plot (Using CPScatterPlot
). I need to graph a line plot that is not continuous (like y=1/x or y=floor(x)).
How would I go about doing this? Any suggestions would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果使用数据源方法 -numberForPlot:field:recordIndex: 提供图形数据,则返回
nil
以防止在与当前点相邻的点之间绘制线条。这可用于通过在需要间隙的地方插入额外的记录来创建所需的效果。If using the data source method
-numberForPlot:field:recordIndex:
to provide graph data, returnnil
from it to prevent lines from being drawn between the points adjacent to the current. This can be used to create the desired affect by inserting an extra record where the gap is needed.