2

如何更改 barChart yaxis-tick 颜色

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

我尝试了我能找到的任何选项(也使用 Firebug),但没有任何效果

任何想法

谢谢

4

1 回答 1

4

在您的 : 上附加以下extender功能barChart

function ext() {
    this.cfg.axes.yaxis.tickOptions = {
        textColor : '#00ff00'
    };
}
于 2012-10-31T07:07:29.527 回答