• 【echarts】06、echarts+vue2 - 雷达图


    前言

    基于echarts5.x和vue2实现
    记录以便日后查阅
    
    • 1
    • 2

    实现效果

    在这里插入图片描述

    代码实现

    <template>
      <div class="chart-wrap">
        <div id="chart03" class="chart" />
      div>
    template>
    
    <script>
    export default {
      name: 'Index',
      data () {
        return {
          chart: null,
          data: [
            { name: '共享书房', max: 50, data: 23, icon: 'gxsf' },
            { name: '社区礼堂', max: 50, data: 12, icon: 'sqlt' },
            { name: '照护驿站', max: 50, data: 12, icon: 'zhyz' },
            { name: '创业空间', max: 50, data: 26, icon: 'cykj' },
            { name: '托育空间', max: 50, data: 26, icon: 'tykj' },
            { name: '文化空间', max: 50, data: 42, icon: 'whkj' }
          ]
        }
      },
      mounted() {
        this.createChartHandler()
      },
      methods: {
        // 创建图表
        createChartHandler () {
          this.chart = this.$echarts.init(document.getElementById('chart03'))
          this.chart.setOption(this.getChartOption(this.data))
          window.addEventListener('resize', () => {
            setTimeout(() => {
              this.chart.resize()
            })
          })
        },
        // 获取图表配置项
        getChartOption (data) {
          return {
            tooltip: {
              position: ['50%', '50%'],
              extraCssText:
                'color:#fff;background: rgba(0, 38, 118, 0.5);border:none; box-shadow: 0px 0px 8px 1px rgba(0, 145, 255, 0.5);border-radius: 2px;z-index:99',
              formatter: function (e) {
                let str = '
    ' e.value.forEach((item, index) => { const d = `

    ${data[index].name}: ${item}

    `
    str += d }) str += '
    '
    return str } }, radar: { indicator: data, radius: ['0%', '70%'], nameGap: '4', splitArea: { show: false }, axisName: { formatter: (value, indicator) => { return ` {${indicator.icon}|} {label|${value}} {value|${indicator.data}} ` }, rich: { gxsf: { backgroundColor: { image: require('../../../assets/img/03/gxsf-icon.png') }, align: 'center', width: 16, height: 16 }, sqlt: { backgroundColor: { image: require('../../../assets/img/03/sqlt-icon.png') }, align: 'center', width: 16, height: 16 }, zhyz: { backgroundColor: { image: require('../../../assets/img/03/zhyz-icon.png') }, align: 'center', width: 14, height: 16 }, cykj: { backgroundColor: { image: require('../../../assets/img/03/cykj-icon.png') }, align: 'center', width: 14, height: 16 }, tykj: { backgroundColor: { image: require('../../../assets/img/03/tykj-icon.png') }, align: 'center', width: 16, height: 16 }, whkj: { backgroundColor: { image: require('../../../assets/img/03/whkj-icon.png') }, align: 'center', width: 16, height: 16 }, label: { fontSize: '14', color: '#fff', lineHeight: 16, align: 'center', fontFamily: 'PingFangReg', fontWeight: '400' }, value: { fontSize: '12', color: '#00D7DA', lineHeight: 16, align: 'center', fontFamily: 'PingFangBold', fontWeight: 'bold' } }, color: '#fff', fontSize: 14 } }, series: [ { name: '', type: 'radar', data: [{ value: data.map(item => item.data), name: 'test' }], areaStyle: { color: 'rgba(6,200,140,0.4)' }, lineStyle: { type: 'dashed', color: '#06C88C' }, itemStyle: { color: '#06C88C' }, symbolSize: 5 } ] } } } }
    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
    • 159
    • 160
    • 161
  • 相关阅读:
    Mysql 自带分页异常
    /var/lib/docker/aufs/mnt/ 空间占用高问题解决\查看磁盘空间
    【办公类-21-04】20240227单个word按“段落数”拆分多个Word(三级育婴师操作参考题目 有段落文字和表格 1拆13份)
    15-js运动函数和轮播图
    阿里云几核服务器够用?内存多少合适?
    Spring Cloud Alibaba 工程搭建
    java 单元测试Junit
    【网络应用与安全】第一次作业
    合成孔径雷达地面运动目标检测技术研究——基于概率图(Matlab代码实现)
    SSL证书一次性购买多年期,有什么好处?
  • 原文地址:https://blog.csdn.net/weixin_44402694/article/details/126001613