How it is possible to change background opacity for Jqplot charts? (I mean only for background).
Possible is change a color, or do backgroud transparent:
grid: { background: 'transparent' }
But what about opacity? I tried this, but does not work:
$('.jqplot-grid-background').css({
'opacity': '0.4'
});