Highcharts图表选项backgroundColor:’transparent’在IE 8上显示黑色
- histogram = new Highcharts.Chart({
- chart: { renderTo: 'histogram',defaultSeriesType: 'bar',backgroundColor:'transparent'
- }
这工作正常在I.E 9和其他人,但失败在I.E 8和Safari任何人有任何想法为什么?
解决方法
尝试此解决方案:
- histogram = new Highcharts.Chart({
- chart: { renderTo: 'histogram',backgroundColor:'rgba(255,255,0.1)'
- }