jquery有resize()事件,但直接調用沒有起作用,引入jquery.ba-resize.js檔案就可以了。
例如:
<div class="chart" >
<div id="myChart" style="height:300px"></div>
</div>
let myChart = Echarts.init(document.getElementById("myChart"));
$('.chart').resize(function () {
myChart.resize();
});