任何Jqplot图表的背景不透明度

时间:2015-10-08 11:35:36

标签: javascript jquery css jqplot

如何更改Jqplot图表的背景不透明度? (我的意思是仅用于背景)。

可能是改变颜色,或者做透明背景:

grid: { background: 'transparent' }

但不透明度呢?我尝试了这个,但不起作用:

    $('.jqplot-grid-background').css({
        'opacity': '0.4'
    });

2 个答案:

答案 0 :(得分:1)

你必须像

一样
git describe

点击此链接jqPlot - How to change opacity or z-index of canvasOverlay?

答案 1 :(得分:0)

我已经通过rgba defintion解决了:

background: 'rgba(128, 128, 128, 0.2)'

最后一个参数是不透明度,样本将背景显示为浅灰色。