如何在 iPhone 折线图中获取图表上的点
大家好,
我正在研究折线图。我能够完美地绘制折线图。但问题是我想要如下图所示的效果。
我想要滑块效果。我使用 CGPath 存储图形路径。如果滑块在图表上移动,则相应值必须显示在上部标签上。
请帮助我。
HI all,
I'm working on line graph. I'm able to draw line graph perfectly. But the thing is I want the effect like shown in the below image.
I want the slider effect. I'm storing the graph path using CGPath. If the slider moves on the graph according value has to display on the upper label..
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法从 CGPath 访问数据。您需要使用 (x,y) 对来保存您自己的数据结构(数组或 NSArray)。然后,确定哪个数据点对应于屏幕上的位置只需计算用于确定数据点在屏幕上的位置的函数的逆函数即可。
You can't access the data from the CGPath. You need to hold your own data structure (an array or NSArray) with the (x,y) pairs. Then, figuring out what data point corresponds to a location on the screen is a matter of computing the inverse of the function you used to figure out the location on the screen of a data point.