Vue 中echarts动态修改的容器大小、宽度
https://blog.csdn.net/aerbaba/article/details/81451620<div style="width: 100%; overflow: auto"><divid="RobotEchartlen"ref="tendencychart"style="height: 270px"></div></di.
·
<div style="width: 100%; overflow: auto">
<div
id="RobotEchartlen"
ref="tendencychart"
style="height: 270px"
></div>
</div>
var dataobj = res.data.data;
document.getElementById("RobotEchartlen").style.width =
dataobj.length * 60 > 350 ? dataobj.length * 60 + "px" : "350px"; //动态设置容器宽度
myChart.resize();//直接加这句即可
myChart.setOption(option,true);
更多推荐
已为社区贡献60条内容
所有评论(0)