与数据点交互 - float
我使用此网站作为参考: http://astro.unl.edu /naap/hr/animations/hrExplorer.html
我需要添加一个指针“x”作为链接并操纵幻灯片,指针应移动 x 和 y 轴。
看我的代码:http://jsfiddle.net/2Xn9f/4/
明白了吗?
你能帮助我吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,你想要一个十字架。在 flot API 中,它实际上为我们提供了该功能!
所以这部分很简单。然后,如果您希望能够在图表中滑动它,您可以创建一些 jQuery UI 滑块 控制 x 和 y,并在每次移动滑块时重新绘制:
plotSlide 执行类似操作:
在此处查看其实际操作:http://jsfiddle.net/ryleyb/2Xn9f/5/
First off, you want a cross. In the flot API, it actually gives us that function!
So that part is easy enough. Then, if you want to be able to slide it around the graph, you can create some jQuery UI sliders that control x and y, and have it replot every time a slider is moved:
Where plotSlide does something like this:
See it in action here: http://jsfiddle.net/ryleyb/2Xn9f/5/