本文介绍了如何更改p:barChart yaxis-tick颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何更改barChart yaxis-tick颜色

How can I change the barChart yaxis-tick color

.jqplot-axis .jqplot-yaxis .jqplot-yaxis-tick{
     color: green;
}

我尝试了所有可以找到的选项(也使用Firebug),但没有任何作用

I try any option that I could find (also using Firebug) and nothing is working

任何想法

谢谢

推荐答案

barChart上附加以下extender函数:

function ext() {
    this.cfg.axes.yaxis.tickOptions = {
        textColor : '#00ff00'
    };
}

这篇关于如何更改p:barChart yaxis-tick颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 00:37