浮点图库:仅在悬停时在折线图上显示点?

发布于 2024-12-21 04:00:55 字数 531 浏览 0 评论 0原文

使用flot库,如何仅在将鼠标悬停在线上的该点上时显示该点?我不希望所有点始终可见。.

类似于谷歌的做法:请参阅第一个示例:http://code.google.com/apis/chart/interactive/docs/gallery/linechart.html

无法使用 Google,因为我需要组合多种图表类型。我也喜欢使用谷歌,你不必将鼠标悬停在确切的点上,只要足够近,工具提示也会被触发。

弗洛特可以做到这一点吗?或者还有其他库吗?

编辑:这些人似乎正在使用 flot,但我不确定他们是如何做到的? https://www.portfolionumbers.com/tools/risk/report

Using the flot library, how can I show the point only when hovering over that spot on the line? I don't want all dots visible all the time..

Similar to how google does it: See the first example: http://code.google.com/apis/chart/interactive/docs/gallery/linechart.html

Can't use google since I need to combine multiple chart types. I also like that with google you don't have to hover over the exact point, close enough and the tooltip is triggered as well.

Can flot do this? Or any other libraries?

Edit: these guys appear to be using flot, but I'm not sure how they do it? https://www.portfolionumbers.com/tools/risk/report

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

七色彩虹 2024-12-28 04:00:55

在选项对象中,您可以指定如下内容:

{
    series: { lines: { show: true }, points: { show: false } },
    grid: { hoverable: true, clickable: false }
}

In the option object you can specify something like:

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