vue中echart使用

更新于:2021-09-18

基于vue2和echart(5.1.1)

引入

import * as echarts from "echarts";

缩放

option = {       
    window.addEventListener("resize", this.resizeChart1);
},
resizeChart1() {
    this.myChart1.resize();
},
window.removeEventListener("resize", this.resizeChart1);

提示框文字格式

tooltip: {
    formatter: function (params) {
      let result = params[0].axisValue + "<br>";
      params.forEach(function (item) {
        result +=
          '<span style="display:inline-block;margin-right:5px;border-radius:10px;width:9px;height:9px;background-color:' +
          item.color +
          '"></span>' +
          item.seriesName +
          " : " +
          item.value +
          "</br>";
      });
      return result;
    },
}

y轴最大/小值,步进

let y1Max = Math.ceil(Math.max.apply(null, yList1) / 25) * 25;
let y1Inteval = Math.ceil(y1Max / 5);
option = {
    yAxis: {
        min: 0,
        max: y1Max,
        interval: y1Inteval,
    }
}

数据更新

let option = this.ticketChart.getOption();
option.legend[0].data[0].name = "xxx";
option.series[0].name = "xxx";
option.series[0].data = [];
option.yAxis[0].max = 0.5;
option.yAxis[0].min = 0.5;
this.ticketChart.setOption(option);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值