如何使点标签与 jqplot 中的条形颜色相匹配?
我有一个正确渲染的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来点标签是根据其系列进行分类的。因此,第一个系列中的点标签将有一个名为
jqplot-series-0
的类,第二个系列将有jqplot-series-1
等等。只要用一些 CSS 来定位它们就可以了。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 havejqplot-series-1
and so on. Just target them with some CSS and it should work.