ECharts 设置背景图片

实现的思路:

  1. 设置 echarts 实例的背景为透明;
  2. 外层容器设置背景图片。
chartOptions = {
    backgroundColor: 'transparent'
}
.chart-wrap {
    background-image: url('图片');
}
原文地址:https://www.cnblogs.com/xiaoyucoding/p/12531547.html