【echarts】17、echarts+vue2 - 旭日图

前言

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

实现效果

在这里插入图片描述

代码实现

<template>
  <div class="chart-wrap">
    <div id="chart14" class="chart" />
  </div>
</template>

<script>
export default {
  name: 'Index',
  data () {
    return {
      chart: null,
      data: [
        {
          name: '工艺碳排',
          value: 12.73,
          itemStyle: {
            color: '#0091FF'
          },
          children: [
            {
              name: '工艺碳排',
              value: 12.73,
              itemStyle: {
                color: '#2A6DFB'
              }
            }]
        },
        {
          name: '能源碳排',
          itemStyle: {
            color: '#124EA7'
          },
          children: [
            {
              name: '电',
              value: 70.64,
              itemStyle: {
                color: '#06C88C'
              }
            },
            {
              name: '天然气',
              value: 0.41,
              itemStyle: {
                color: '#0028F7'
              }
            },
            {
              name: '蒸汽',
              value: 6.78,
              itemStyle: {
                color: '#F72000'
              }
            },
            {
              name: '煤炭',
              value: 6.98,
              itemStyle: {
                color: '#F70084'
              }
            },
            {
              name: '油品',
              value: 2.46,
              itemStyle: {
                color: '#F7B500'
              }
            }
          ]
        }
      ]
    }
  },
  mounted() {
    this.createChartHandler()
  },
  methods: {
    // 创建图表
    createChartHandler () {
      this.chart = this.$echarts.init(document.getElementById('chart14'))
      this.chart.setOption(this.getChartOption(this.data))
      window.addEventListener('resize', () => {
        setTimeout(() => {
          this.chart.resize()
        })
      })
    },
    // 获取图表配置项
    getChartOption (data) {
      return {
        tooltip: {
          trigger: 'axis',
          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;',
          axisPointer: {
            type: 'none'
          }
        },
        series: {
          type: 'sunburst',
          emphasis: {
            focus: 'ancestor'
          },
          data: data,
          radius: [0, '90%'],
          label: {
            rotate: 'radial',
            fontSize: 8
          }
        }
      }
    }
  }
}
</script>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值