如何在 iPhone 折线图中获取图表上的点

发布于 2024-10-16 08:51:46 字数 201 浏览 4 评论 0原文

大家好,

我正在研究折线图。我能够完美地绘制折线图。但问题是我想要如下图所示的效果。

在此处输入图像描述

我想要滑块效果。我使用 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.

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

氛圍 2024-10-23 08:51:46

您无法从 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文