vue中echarts图标点击事件(x轴)及重绘时候dom的销毁

vue中echarts图标点击事件(x轴)

一、初始化

  init() {
            this.echartLine = echarts.init(this.$refs['lineChart'])
            window.addEventListener('resize', () => {
                this.echartLine && this.echartLine.resize()
            })
              this.optionsLine = {
                    tooltip: {
                        trigger: 'axis',
                        backgroundColor: '#fff', // 提示框背景
                        axisPointer: {
                            type: 'shadow',
                        },
                    },
                    color: [
                        'rgb(71,78,125)',
                        'rgb(65,169,203)',
                        'rgb(105,193,135)',
                        'rgb(246,126,60)',
                        'rgb(102,102,102)',
                    ],
                    legend: {
                        data: ['3s内', '3-15s', '15-60s', '60s以上', '总数'],
                        left: 'right',
                        selectedMode: false, //取消图例上的点击事件
                    },
                    grid: {
                        left: '3%',
                        right: '4%',
                        bottom: '3%',
                        containLabel: true,
                    },
                    xAxis: {
                            type: 'category',
                            boundaryGap: false,
                            data: this.linexAxis,
                    },
                    yAxis: {
                        type: 'value',
                        axisLine: {
                            //y轴
                            show: false,
                        },
                        axisTick: {
                            //y轴刻度线
                            show: false,
                        },
                    },
                    series: [
                            {
                                name: '3s内',
                                type: 'line',
                                data: this.lineSeries[0],
                            },
                            {
                                name: '3-15s',
                                type: 'line',
                                data: this.lineSeries[1],
                            },

                            {
                                name: '15-60s',
                                type: 'line',
                                data: this.lineSeries[2],
                            },
                            {
                                name: '60s以上',
                                type: 'line',
                                data: this.lineSeries[3],
                            },
                            {
                                name: '总数',
                                type: 'line',
                                data: this.lineSeries[4],
                            },
                    ],
                }
            this.echartLine.setOption(this.optionsLine)
        },
 watch: {
        productList: {
            //监听到数据,重绘echarts
            deep: true, //深度监听设置为 true
            handler: function (newV, oldV) {
               //监听到数据了,相应的数据获取
                })
              this.echartLine.dispose() //dom的摧毁
              this.init()
              this.echartLine.on('click', (params)=> {
                   //点击的相应逻辑
			 });
            },
        },
    },
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值