vue echarts之饼图

得意时要看淡,失意时要看开。不论得意失意,切莫大意;不论成功失败,切莫止步。志得意满时,需要的是淡然,给自己留一条退路;失意落魄时,需要的是泰然,给自己觅一条出路vue echarts之饼图,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

上一篇搞了个仪表盘,这一篇搞个饼图

无图言d,所以,展示:
在这里插入图片描述

直接上代码:

<template>
  <div :class="className" :style="{height:height,width:width}" />
</template>

<script>
import echarts from 'echarts'
require('echarts/theme/macarons') // echarts theme
import resize from './mixins/resize'
export default {
  name: 'TestChart',
  mixins: [resize],
  props: {
    className: {
      type: String,
      default: 'chart'
    },
    width: {
      type: String,
      default: '100%'
    },
    height: {
      type: String,
      default: '200px'
    },
    autoResize: {
      type: Boolean,
      default: true
    }
  },
  data() {
    return {
      chart: null
    }
  },
  created () {
    this.$nextTick(()=> {
      this.initChart()
    })
  },
  methods: {
    initChart() {
      let eVal = 40
      this.chart = echarts.init(this.$el, 'macarons') // 引用echarts自定义主题
      this.chart.setOption({
        title: {
          text: 'xx使用率',
          textStyle: {
            fontSize: 16,
            top: '10%',
            left: '20%'
          }
        },
        tooltip: {
          trigger: "item",
          formatter: "{d}%",
          show: false
        },
        legend: {
          orient: 'vertical',
          x: 'left',
          show: false
        },
        series: [
          {
            name: '',
            type: 'pie',
            radius: ["45%", "50%"],  // 饼图半径,内半径和外半径
            //center: ["30%", "70%"],  // 调整饼图位置
            avoidLabelOverlap: true,   //启用防止标签重叠
            hoverAnimation: false,    //开启放大动画
            label: {  // 饼图图形上的文本标签
              normal: { // normal是图形在默认状态下的样式
                show: false,  // 不显示label
                position: "center",   //文字居中显示
                formatter: "{d}% \r\n {b}"  //显示文本内容,d代表百分比,b代表name文本
              },
              // emphasis: {
              //   show: true,
              // },
            },
            labelLine: {
              normal: {
                show: false,
              },
            },
            data: [
              {
                value: eVal,
                name: "利用率",
                label: {
                  show: true,
                },
                itemStyle: {
                  color: "#DC143C",
                }
              },
              {
                value: 100 - eVal,
                name: "",
                itemStyle: {
                  color: "#D3D3D3",
                },
              },
            ],
          }
        ]
      })
    }
  },
}
</script>

<style scoped>

</style>

后续有时间再更新。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/157364.html

(0)
飞熊的头像飞熊bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!