在 jQuery 浮点图上添加或突出显示单个点?
我已经使用一些数据绘制了一个流程图:
var plot = $.plot($("#placeholder"),
[{
data: data,
}], {
series: {
points: {
show: true
}
},
grid: {
hoverable: true,
}
});
现在,当用户将鼠标悬停在页面上其他位置的项目上时,我想在图表上突出显示一个单个点。
我发现这个问题,解释了如何从头开始重新绘制该系列,但有没有办法突出显示一个点?
或者添加一个不同颜色的新点,这会产生突出显示的效果吗?
注意:当用户将鼠标悬停在页面上其他位置的相关项目上时,我将获得相关点的 x 和 y 坐标,但不会获得图表上的像素坐标。
I've already drawn a flot graph using some data:
var plot = $.plot($("#placeholder"),
[{
data: data,
}], {
series: {
points: {
show: true
}
},
grid: {
hoverable: true,
}
});
Now I'd like to highlight a single point on the graph, when a user hovers over an item elsewhere on the page.
I found this question, which explains how to totally redraw the series from scratch, but is there a way to highlight a single point?
Or add a new point in a different colour, which would have the effect of a highlight?
NB: when the user hovers over the relevant item elsewhere on the page, I will have the x and y coordinates of the related point, but not the pixel coordinates on the graph.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
API 提供以下方法:
The API provides the following methods: