zoukankan      html  css  js  c++  java
  • 一个页面多个echarts图表自适应

    methods 方法

        // 订单Echarts
        drawOrder () {
          this.charts = echarts.init(document.getElementById('order'))
          // 绘制图表
          this.charts.setOption({
            title: {
              text: '',
              subtext: '',
              left: 'center'
            },
            tooltip: {
              trigger: 'item',
            },
            // legend: {
            //   orient: 'horizontal',
            //   left: 'top',
            //   data: ['直接访问', '邮件营销', '联盟广告', '视频广告', '搜索引擎']
            // },
            series: [
              {
                name: '订单数量',
                type: 'pie',
                radius: '70%',
                center: ['50%', '60%'],
                data: [
                  { value: 335, name: '直接访问' },
                  { value: 310, name: '邮件营销' },
                  { value: 234, name: '联盟广告' },
                  { value: 135, name: '视频广告' },
                  { value: 1548, name: '搜索引擎' }
                ],
                emphasis: {
                  itemStyle: {
                    shadowBlur: 10,
                    shadowOffsetX: 0,
                    shadowColor: 'rgba(0, 0, 0, 0.5)'
                  }
                }
              }
            ]
          });
        },

    自适应

    在需要window.onresize的函数内直接使用echarts.init()去取:

      mounted () {
        this.$nextTick(function () {
          // 图表自适应
          window.onresize = function () {
            echarts.init(document.getElementById("order")).resize();
            echarts.init(document.getElementById("ranking")).resize();
          };
          this.drawOrder()
          this.drawRanking()
        });
      },

     借鉴:https://www.pianshen.com/article/5586274051/

  • 相关阅读:
    Navicat加载缓慢
    使用Typora上传博客到博客园
    echart柱状图X轴文字换行
    pc端可以滑动,手机端不能滑动
    select选择最近3年的年份查询
    JQ延时模糊查询
    reset.css
    base64加密
    第四次博客作业结对项目
    WPF DataGrid显示网格 和TImer定时器
  • 原文地址:https://www.cnblogs.com/xiaoxiao2017/p/14297369.html
Copyright © 2011-2022 走看看