• 百分比组件


    在这里插入图片描述

    //组件
    <template>
      <div :class="className" :style="{ height: height, width: width }" style="overflow: hidden;" />
    </template>
      
      <script>
    export default {
      props: {
        className: {
          type: String,
          default: "chart",
        },
        dataOption: {
          type: Array,
          default: [],
        },
        width: {
          type: String,
          default: "100%",
        },
        height: {
          type: String,
          default: "100%",
        },
      },
      data() {
        return {
          chart: null,
          dataValue: [],
        };
      },
      mounted() {
        let that = this;
        this.$nextTick(() => {
          setTimeout(function () {
            that.initChart();
          }, 500);
        });
      },
      watch: {
        dataOption: {
          deep: true,
          handler(val) {
            this.initChart();
          },
        },
      },
      beforeDestroy() {
        if (!this.chart) {
          return;
        }
        this.chart.dispose();
        this.chart = null;
      },
      methods: {
        initChart() {
          this.chart = this.$echarts.init(this.$el, "macarons");
          this.chart.setOption({
            grid: {
              left: "0px",
              right: "0%",
              containLabel: true,
            },
            xAxis: {
              type: "value",
              splitLine: {
                show: false,
              },
              axisTick: {
                show: false,
              },
              axisLine: {
                show: false,
              },
              axisLabel: {
                show: false,
              },
              max: 100,
            },
            yAxis: {
              type: "category",
              splitLine: {
                show: false,
              },
              axisTick: {
                show: false,
              },
              axisLine: {
                show: false,
              },
              axisLabel: {
                show: false,
              },
            },
            series: [
              {
                name: "XXX",
                type: "pictorialBar",
                yAxisIndex: 0,
                symbolSize: [20, 20],
                symbolOffset: [16, 0],
                z: 12,
                itemStyle: {
                  normal: {
                    color: "#73b605",
                  },
                },
                data: [
                  {
                    value: this.dataOption[0],
                    symbolPosition: "end",
                  },
                ],
              },
              {
                name: "XXX",
                type: "pictorialBar",
                yAxisIndex: 0,
                symbolSize: [10, 10],
                symbolOffset: [11, 0],
                z: 13,
                itemStyle: {
                  normal: {
                    color: "#fff",
                  },
                },
                data: [
                  {
                    value: this.dataOption[0],
                    symbolPosition: "end",
                  },
                ],
              },
              {
                type: "bar",
                itemStyle: {
                  normal: {
                    color: "#73b605",
                    opacity: 0.7,
                    barBorderRadius: 5,
                  },
                },
                showBackground: true,
                backgroundStyle: {
                  color: "rgba(225, 230, 239)",
                  borderRadius: [500, 500, 500, 500],
                },
                barWidth: 10,
                barGap: "-100%", // Make series be overlap
                data: this.dataOption,
              },
            ],
          });
        },
      },
    };
    </script>
      
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    //使用组件
    
    1、引入
    
    <scheduleChart :width="'87%'" :height="'30px'" :dataOption="dataOption"></scheduleChart>
    
    dataOption: [80],
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
  • 相关阅读:
    G-002 波峰焊与回流焊的区别
    浏览器渲染原理
    如何警用root用户登录ssh
    C51内存类型
    1162 Postfix Expression
    Blind Inverse Gamma Correction with Maximized DifferentialEntropy
    Pandas初级认识
    Mysql个人总结
    MySQL SELECT 的执行顺序
    基于遗传算法与神经网络的测井预测(Matlab代码实现)
  • 原文地址:https://blog.csdn.net/EstherNi/article/details/133312693