vue 中使用 echarts 自适应问题

echarts 自带的自适应方法  resize()

具体用法:

let xxEcharts = this.$echarts.init(document.getElementById(‘xxx‘))

xxEcharts.setOption(xxxx)  // 参数是 echarts 的option对象

window.onresize = xxEcharts.resize

但是,问题来了,同一个页面使用多个echarts 的时候,window.onresize = xxEcharts.resize  只对最后一个echarts有效果

这时候换种写法

window.onresize = function(){

  xxBarChart.resize()

  xxxBarChart.resize()

  xxChart.resize()

  xxxChart.resize()

}

好了,现在所有的 echarts都可以自适应了,

然而,还没完,还是会出现各种问题,导致自适应出问题,现在我们想想,如何手动触发 resize

首先,肯定要把 echarts变量全局化。

我现在 vue的data中设置 xxEcharts : this.$echarts.init(document.getElementById(‘xxx‘))

然而报错,没办法,

再试试在计算函数中声明

computed:{

  xxBarChart(){

    return this.$echarts.init(document.getElementById(‘myChart_ln‘))

  }

}

再试试,竟然可以了,虽然不知道原理,但是现在我们可以手动调起  this.xxBarChart.resize()了

原文地址:https://www.cnblogs.com/tmbm/p/8885509.html

时间: 2024-10-06 18:36:58

vue 中使用 echarts 自适应问题的相关文章

VUE中使用Echarts绘制柱状图

在main.js中引入echarts import echarts from 'echarts' Vue.prototype.$echarts = echarts 在相应的vue中导入echarts import echarts from 'echarts'; 实现柱状图显示 <div style="width: 100%;height: 50%;border:1px solid rgb(180,180,180);top: 0px" id="echartss"

项目vue中使用echarts步骤

1.在组件中创建该模块 <template> <div id = "testChart"></div> </template> 2.导入echarts 前提是:已经在项目中配置过echarts 在<script></script>中导入echarts <script> import {echartInit} from "../../../utils/echartUtils" <

vue中使用echarts

1.下载依赖 cnpm i echarts -S 2.模块中引入 <template> <div class="analyzeSystem"> <div :class="className" :id="id" :style="{height:height,width:width}" ref="myEchart"></div> </div> <

vue中移动端自适应的postcss-plugin-px2rem插件

flexible 主要是用来响应式改变根元素的字体大小 安装命令 npm install lib-flexible --save 在main.js里面导入命令import 'lib-flexible' 要把index.html里面的<meta name='viewport'>标签删除;因为会自动添加 postcss-plugin-px2rem配置内容解释 安装命令 npm i --save postcss-plugin-px2rem 创建一个名为vue.config.js的文件写入 model

vue中使用echarts来绘制中国地图,NuxtJS制作疫情地图,内有详细注释,我就懒得解释了,vue cli制作疫情地图 代码略有不同哦~~~

我的代码自我感觉----注释一向十分详细,就不用过多解释都是什么了~~ 因为最近疫情期间在家实在是没事干,想找点事,就练手了个小demo 首先上 NuxtJs版本代码,这里面 export default { mode: 'universal', /* ** Headers of the page */ head: { title: process.env.npm_package_name || '', meta: [ { charset: 'utf-8' }, { name: 'viewpor

vue中绘制echarts折线图

1.安装echartscnpm install echarts --save 2.vue代码 <template> <div> //下面的div给表一个容器 <div id="myChart" :style="{width: '1000px', height: '500px'}"></div> </div> </template> <script> // 引入基本模板 let ech

Wabpack系列:在webpack+vue开发环境中使用echarts导致编译文件过大怎么办?

现象,在一个webpack+vue的开发环境中,npm install echarts --save了echarts,然后在vue文件中直接使用 import echarts from 'echarts' 然后编译的时候加上了Uglify选项,发现vendor文件的大小已经达到了800多k,导致首次加载速度比较慢,然后我们这个是webapp,就更慢了. 所以考虑把echarts提取出来,改用cdn版本的echarts,具体操作步骤如下: (0)找到可用的echartscdn资源 在bootcdn

Vue系列——在vue项目中使用echarts

安装echarts依赖 npm install echarts -S 创建图表 全局引入 main.js // 引入echarts import echarts from 'echarts' Vue.prototype.$echarts = echarts Hello.vue <div id="myChart" :style="{width: '300px', height: '300px'}"></div> export default {

vue中如何使用echarts

在vue中使用echarts主要是注意如何与vue生命周期相结合,从而做到数据驱动视图刷新 主要是以下几步: echarts的option设置在data(){}中 在mounted(){}生命周期去初始化数据,初始化echarts 在updated(){}生命周期中去setOption(option)渲染echarts. 模板vue文件如下: <template> <div id="myChart" ref="myChart"></di