echarts隐藏点击nav切换显示造成宽度100px

echarts页面一加载是隐藏状态,点击nav切换的时候显示出来,造成宽度为100px。解决办法:先给ehcarts赋值高宽,再隐藏。
echarts隐藏点击nav切换显示造成宽度100px_第1张图片
刚开始我是直接判断navIndex的值来切换两种数据。后来发现容易造成echarts图表宽度为100px变形了。
解决办法如下:

//先给图表设置宽度(vue项目中此段代码放在mounted中)
 document.getElementById("touristChart").style.width = window.innerWidth - 30 + "px";
 //然后把图表的父级再隐藏掉(vue项目中此段代码放在mounted中)
 document.querySelector(".historyData").style.display = "none";
//最后再切换nav的时候,再隐藏/显示图表的父级(vue-methods中)
 switchNav(index) {
      this.navIndex = index;
      if (index == 1) {
        document.querySelector(".historyData").style.display = "block";
      }else{
        document.querySelector(".historyData").style.display = "none";
      }
    },

你可能感兴趣的:(Echarts)