在jqplot中的荧光笔后面制作点标签

发布于 2024-11-06 21:04:37 字数 75 浏览 0 评论 0原文

我正在尝试在简单的折线图上制作荧光笔,无论我做什么,点标签都会始终位于工具提示上方并隐藏

任何人都知道如何实现它的内容?

I'm trying to make a highlighter on a simple line graph, and no matter what I do, the pointlabel keeps being above the tooltip and hides the content

anyone has an idea of how to make it happen?

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

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

发布评论

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

评论(1

知足的幸福 2024-11-13 21:04:37

您必须修改 jqplot css 文件:

.jqplot-highlighter-tooltip, .jqplot-canvasOverlay-tooltip {
    border: 1px solid #cccccc;
    font-size: 0.75em;
    white-space: nowrap;
    background: rgba(208,208,208,0.5);
    padding: 1px;
    z-index: 3;
}

添加大于 .jqplot-point-label 的 z-index ,必须解决问题。

You must modify the jqplot css file:

.jqplot-highlighter-tooltip, .jqplot-canvasOverlay-tooltip {
    border: 1px solid #cccccc;
    font-size: 0.75em;
    white-space: nowrap;
    background: rgba(208,208,208,0.5);
    padding: 1px;
    z-index: 3;
}

Adding a z-index greater than the .jqplot-point-label has, must solve the problem.

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