s7graphview 需要帮助
如果有人使用 s7graphview 来绘制图形,那么我想知道在代码中进行哪些更改以维护 x 轴上绘制的值的增量值。目前它根据返回给它的数组的计数来维护。我想保持 5 个单位的增量差距。
If anyone have used s7graphview for plotting the graph then I want to know where to do changes in the code for maintaining the incremental value of the values that is been plot on the x-axis. Currently it maintains according to the count of array being return to it. I want to maintain incremental gap of 5 units.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将
S7GraphView
类的下一行(S7GraphView.m 中的约 220 行)的drawRect:
替换为 此代码:
On DemoS7GraphView project from < a href="http://code.google.com/p/s7graphview/downloads/list" rel="nofollow noreferrer">s7graph google 代码页 它给了我下一个结果:
希望有帮助。
I replace in
drawRect:
ofS7GraphView
class next lines (~220 line in S7GraphView.m):with this code:
On DemoS7GraphView project from s7graph google code page it gives me next result:
Hope it helps.