<div id="chartmainbar3"></div>
mounted(){
this.resizeEcharts = () => {
this.$echarts.init(document.getElementById("chartmainbar3")).resize();
}
window.addEventListener("resize", this.resizeEcharts);
}
媒体查询,设置图的宽高,不然刷新会出现空白(因为不设置高的话,刷新canvas图的height变为0,因此会出现界面空白不加载图的情况),所以需要在自适应的同时媒体查询设置宽高。
@media screen and (min-width: 200px) and (max-width: 1600px){
#chartmainbar3{
width: 100%!important;
height:260px!important;
margin-top: 3.7%
}
}
@media screen and (min-width: 1601px){
#chartmainbar3{
width: 100%!important;
height:360px!important;
margin-top: 3.7%
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/149802.html