【Echarts 3.x】 Echarts 解决无数据的情况,显示暂无数据
程序员文章站
2022-06-07 18:36:18
...
let noData = `<div style="min-height:100%;">`;
noData += `<p style="text-align: center;font-size: 15px;padding-top: 10px;font-weight: 600;">${this.title}</p>`;
noData += `<div style="text-align: center;">暂无数据</div>`;
noData += `</div>`;
echartsBox.innerHTML = noData;
echartsBox.removeAttribute("_echarts_instance_");
效果如下: