css – Highcharts图表选项backgroundColor:’transparent’在IE 8上显示为黑色

前端之家收集整理的这篇文章主要介绍了css – Highcharts图表选项backgroundColor:’transparent’在IE 8上显示为黑色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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)'
                }
原文链接:https://www.f2er.com/css/223453.html

猜你在找的CSS相关文章