vue.js

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript类库 > vue.js > vue3 echarts不能根据屏幕大小缩

vue3写echarts不能根据屏幕大小缩的解决办法

作者:Grocery store owner

这篇文章主要介绍了vue3写echarts不能根据屏幕大小缩的解决办法,文中通过代码介绍的非常详细,对大家学习或者使用vue3具有一定的参考借鉴价值,需要的朋友可以参考下

下载echarts

npm i echarts

引入

import * as echarts from 'echarts'
import { markRaw } from 'vue'

使用markRaw包裹起来

const getCodHotData = () => {
	state.Chart = markRaw(echarts.init(document.getElementById('ChargingProcessCurve')))
	var option = {
        title: {
            text: 'Stacked Line'
        },
        tooltip: {
            show: true,
            trigger: 'axis',
        },
        legend: {
            show: true,
            type: 'plain',
            icon: 'roundRect',
            orient: 'horizontal',
            bottom: '0',
            data: ['Email', 'Union Ads']
        },
        grid: {
            left: '1%',
            right: '1%',
            bottom: '6%',
            containLabel: true
        },
        toolbox: {
            feature: {
            saveAsImage: {}
            }
        },
        xAxis: {
            type: 'category',
            boundaryGap: false,
            data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
        },
        yAxis: {
            type: 'value'
        },
        series: [
            {
                name: 'Email',
                type: 'line',
                stack: 'Total',
                data: [120, 132, 101, 134, 90, 230, 210]
            },
            {
                name: 'Union Ads',
                type: 'line',
                stack: 'Total',
                data: [220, 182, 191, 234, 290, 330, 310]
            }
        ]
    }
	state.Chart.setOption(option)
}

缩放

const echareseven = ()=> {
	window.addEventListener('resize', () => {
		state.Chart.resize()
	})
}

使用

onMounted(() => {
    nextTick(() => {
        getCodHotData()
        echareseven()
	})
})

总结 

到此这篇关于vue3写echarts不能根据屏幕大小缩解决办法的文章就介绍到这了,更多相关vue3 echarts不能根据屏幕大小缩内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文