ECharts 设置背景图片
时间:2020-03-20 15:03:40
收藏:0
阅读:1622
实现的思路:
- 设置 echarts 实例的背景为透明;
- 外层容器设置背景图片。
chartOptions = {
backgroundColor: 'transparent'
}
.chart-wrap {
background-image: url('图片');
}原文:https://www.cnblogs.com/xiaoyucoding/p/12531547.html
评论(0)