Echarts本身属性不支持背景图片的配置,所以我们需要在生成Echarts图表的Div外套一层Div,用于设置背景图片css。
html
<style>
.backGroundImg{
width:100%;
height:100%;
}
<style>
<div>
<div class="backGroundImg">
<div id="initBar" style="width:100%;height:900px;"><div>
<div>
<div>
js
var option = {
backgroundColor:'#ffffff' //此处不能设置背景色,会覆盖住图片
}