Highcharts
chart option backgroundColor:'transparent'
showing black on IE 8
histogram = new Highcharts.Chart({
chart: { renderTo: 'histogram', defaultSeriesType: 'bar',
backgroundColor:'transparent'
}
This works fine on I.E 9
and others but fails on I.E 8 and Safari anyone has any idea why ?
Try this solution:
I found this in Highcharts sources:
So you can set the chart background color to 'rgba(255,255,255,0.002)' and it runs in the most important browsers.
If you can access the highcharts.js file go to the backgroundColor line (around 479) and change line like
backgroundColor:"rgba(255, 255, 255, 0)"
. It will change all backgrounds of the charts to transparentMay be you have to write
in your css.
Can you try this -
See on: jsfiddle