最新公告
  • 欢迎您光临起源地模板网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!立即加入钻石VIP
  • vue封装的可配置水球图组件

    正文概述 掘金(程序狗爱编程)   2021-06-09   551

    前言

    基于 echarts-liquidfill 开发的适用于大屏可视化的水球图组件,根据传入的数值决定水球图水量高度,可定义水球图的三条水波纹的颜色色值、水球图的背景颜色、边框颜色以及外发光阴影的颜色等属性。 vue封装的可配置水球图组件

    1. 引入echart、echarts-liquidfill 包

    • cnpm i echart echarts-liquidfill element-resize-detector -S

    2. 组件的属性定义和数据定义

    • 每个属性都给了一个默认值,这样即使引入水球图组件不传属性时也能展示一个默认的水球图图表
    data() {
        return {
          option: null,
          chart: null
        };
      },
      props: {
        data: {
          type: Number,
          default: 0.52
        },
        colors: {
          type: Array,
          default: () => ['rgba(14, 71, 120, 1)', 'rgba(58, 160, 235, 1)', 'rgba(107, 211, 253, 1)']
        },
        backgroundColor: {
          type: String,
          default: 'rgba(2, 31, 64, 1)'
        },
        borderColor: {
          type: String,
          default: 'rgba(27, 114, 177, 1)'
        },
        shadowColor: {
          type: String,
          default: 'rgba(107, 211, 253, 1)'
        },
        radius: {
          type: String,
          default: '47%'
        }
      },
    

    3. 水球图的初始化以及元素尺寸监听

    • this.$el 当前元素对象
    • 在mounted生命周期中初始化水球图图表后进行当前元素的容器尺寸的监听
    const dataArr = [this.data, this.data, this.data];
        this.option = {
          title: {
            show: true,
            text: this.data * 100 + '%',
            textStyle: {
              fontSize: 23,
              fontFamily: 'Microsoft Yahei',
              fontWeight: 'normal',
              color: '#fff'
            },
            x: '30%',
            y: '45%'
          },
          series: [
            {
              type: 'liquidFill',
              radius: this.radius,
              center: ['50%', '53%'],
              // shape: 'roundRect',
              data: dataArr,
              color: this.colors,
              backgroundStyle: {
                color: this.backgroundColor
              },
              outline: {
                borderDistance: 0,
                itemStyle: {
                  borderWidth: 3,
                  borderColor: this.borderColor,
                  shadowBlur: 15,
                  shadowColor: this.shadowColor
                }
              },
              label: {
                normal: {
                  formatter: ''
                }
              }
            }
          ]
        };
        this.chart = echarts.init(this.$el);
        this.chart.setOption(this.option);
        window.addEventListener('resize', this.handleWindowResize);
        this.addChartResizeListener();
    

    4. element-resize-detector 做 echart动态适配

    methods: {
        /**
         * 对chart元素尺寸进行监听,当发生变化时同步更新echart视图
         */
        addChartResizeListener() {
          const instance = ResizeListener({
            strategy: 'scroll',
            callOnAdd: true
          });
    
          instance.listenTo(this.$el, () => {
            if (!this.chart) return;
            this.chart.resize();
          });
        },
        /**
         * 当窗口缩放时,echart动态调整自身大小
         */
        handleWindowResize() {
          if (!this.chart) return;
          this.chart.resize();
        }
      },
    

    5. 水球图的数据监听更新

    • 当传入组件的data数据改变之后,图表是不能自动更新的,这个时候我们需要监听echart图表,手动去更新
    watch: {
        data(newVal) {
          this.option.series[0].data = newVal;
          // 更新之前先清空图表 不然会有数字重叠的问题
          this.chart.clear();
          this.chart.setOption(this.option, true);
          this.handleItemMouseover(0);
        }
      }
    

    6. 调用组件方式

    <liquid-chart
      radius="60%"
      :data="21.8"
      :colors="['rgba(1, 105, 110, 1)', 'rgba(65, 233, 204, 1)', 'rgba(0, 217, 180, 1)']"
      borderColor="rgba(32, 170, 149, 1)"
      shadowColor="rgba(0, 217, 180, 1)">
    </liquid-chart>
    

    7. 完整组件代码

    <template>
      <div class="liquid-chart"></div>
    </template>
    
    <script>
    import echarts from 'echarts';
    import 'echarts-liquidfill';
    import ResizeListener from 'element-resize-detector';
    export default {
      name: 'Liquid-Chart',
      data() {
        return {
          option: null,
          chart: null
        };
      },
      props: {
        data: {
          type: Number,
          default: 0.52
        },
        colors: {
          type: Array,
          default: () => ['rgba(14, 71, 120, 1)', 'rgba(58, 160, 235, 1)', 'rgba(107, 211, 253, 1)']
        },
        backgroundColor: {
          type: String,
          default: 'rgba(2, 31, 64, 1)'
        },
        borderColor: {
          type: String,
          default: 'rgba(27, 114, 177, 1)'
        },
        shadowColor: {
          type: String,
          default: 'rgba(107, 211, 253, 1)'
        },
        radius: {
          type: String,
          default: '47%'
        }
      },
      mounted() {
        const dataArr = [this.data, this.data, this.data];
        this.option = {
          title: {
            show: true,
            text: this.data * 100 + '%',
            textStyle: {
              fontSize: 23,
              fontFamily: 'Microsoft Yahei',
              fontWeight: 'normal',
              color: '#fff'
            },
            x: '30%',
            y: '45%'
          },
          series: [
            {
              type: 'liquidFill',
              radius: this.radius,
              center: ['50%', '53%'],
              // shape: 'roundRect',
              data: dataArr,
              color: this.colors,
              backgroundStyle: {
                color: this.backgroundColor
              },
              outline: {
                borderDistance: 0,
                itemStyle: {
                  borderWidth: 3,
                  borderColor: this.borderColor,
                  shadowBlur: 15,
                  shadowColor: this.shadowColor
                }
              },
              label: {
                normal: {
                  formatter: ''
                }
              }
            }
          ]
        };
        this.chart = echarts.init(this.$el);
        this.chart.setOption(this.option);
        window.addEventListener('resize', this.handleWindowResize);
        this.addChartResizeListener();
      },
      beforeDestroy() {
        window.removeEventListener('resize', this.handleWindowResize);
      },
      methods: {
        /**
         * 对chart元素尺寸进行监听,当发生变化时同步更新echart视图
         */
        addChartResizeListener() {
          const instance = ResizeListener({
            strategy: 'scroll',
            callOnAdd: true
          });
    
          instance.listenTo(this.$el, () => {
            if (!this.chart) return;
            this.chart.resize();
          });
        },
        /**
         * 当窗口缩放时,echart动态调整自身大小
         */
        handleWindowResize() {
          if (!this.chart) return;
          this.chart.resize();
        }
      },
      watch: {
        data(newVal) {
          this.option.series[0].data = newVal;
          // 更新之前先清空图表 不然会有数字重叠的问题
          this.chart.clear();
          this.chart.setOption(this.option, true);
          this.handleItemMouseover(0);
        }
      }
    };
    </script>
    
    <style lang="scss" scoped>
    .liquid-chart {
      width: 100%;
      height: 100%;
    }
    </style>
    

    起源地下载网 » vue封装的可配置水球图组件

    常见问题FAQ

    免费下载或者VIP会员专享资源能否直接商用?
    本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
    提示下载完但解压或打开不了?
    最常见的情况是下载不完整: 可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议用百度网盘软件或迅雷下载。若排除这种情况,可在对应资源底部留言,或 联络我们.。
    找不到素材资源介绍文章里的示例图片?
    对于PPT,KEY,Mockups,APP,网页模版等类型的素材,文章内用于介绍的图片通常并不包含在对应可供下载素材包内。这些相关商业图片需另外购买,且本站不负责(也没有办法)找到出处。 同样地一些字体文件也是这种情况,但部分素材会在素材包内有一份字体下载链接清单。
    模板不会安装或需要功能定制以及二次开发?
    请QQ联系我们

    发表评论

    还没有评论,快来抢沙发吧!

    如需帝国cms功能定制以及二次开发请联系我们

    联系作者

    请选择支付方式

    ×
    迅虎支付宝
    迅虎微信
    支付宝当面付
    余额支付
    ×
    微信扫码支付 0 元