Echarts 画布(canvas)
1 重置大小
var document_cards = document.getElementById("cavasbox");
document_cards.style.height = that.ylist.length * 20 + 300 + "px";
that.chart = Chart.init(that.$refs.SCEchart);
that.chart.setOption(that.SCEoption);
that.chart.resize();
2 清空画布
that.chart = Chart.init(that.$refs.SCEchart);
that.chart.clear()
that.chart.setOption(that.SCEoption);