echarts如何实现动态自适应宽高

```

var twChart = echarts.init(document.getElementById('twChart'));

twChart.setOption(option);

setTimeout(function (){

    window.onresize = function () {

    twChart.resize();

    }

},200)

```

你可能感兴趣的:(echarts如何实现动态自适应宽高)