如何使点标签与 jqplot 中的条形颜色相匹配?

发布于 2024-10-03 12:34:29 字数 130 浏览 3 评论 0原文

我有一个正确渲染的 jqplot 条形图。该图表有 2 系列数据,一组呈现蓝色,另一组呈现红色。当我启用 pointLabels 插件以输出条形上方的条形值时,文本将以默认页面字体颜色呈现。我希望字体每次都使用条形的颜色。

谢谢。

I have a jqplot barchart rendering correctly. The chart has 2 series of data, one is is rendered blue and the other is rendered red. When I enable the pointLabels plugin to output the bar value above the bar the text is rendered in the default page font colour. I would like the font to use the colour of the bar each time.

Thanks.

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

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

发布评论

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

评论(1

坚持沉默 2024-10-10 12:34:29

看起来点标签是根据其系列进行分类的。因此,第一个系列中的点标签将有一个名为 jqplot-series-0 的类,第二个系列将有 jqplot-series-1 等等。只要用一些 CSS 来定位它们就可以了。

.jqplot-series-0 {
    color: red;
}

It looks like the point labels are given classes based on their series. So point labels in the first series will have a class called jqplot-series-0, the second series will have jqplot-series-1 and so on. Just target them with some CSS and it should work.

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