侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

echarts环形饼图显示数据(酷炫echarts环形饼图)

2022-06-20 星期一 / 0 评论 / 0 点赞 / 39 阅读 / 5645 字

如何在echarts环形饼图显示数据,我们可以去echarts官网查下文档是在series加是上labelLine图形外文字线和label文字样式属性配置,根据自己的开发需求来设置下,下图是一个酷炫echarts环形饼图。echarts环形饼图显示数据配

如何在echarts环形饼图显示数据,我们可以去echarts官网查下文档是在series加是上labelLine图形外文字线和label文字样式属性配置,根据自己的开发需求来设置下,下图是一个酷炫echarts环形饼图。

echarts饼图显示数值

echarts环形饼图显示数据配置代码如下:

series: [{              name: '占比',              type: 'pie',              center: ['40%', '44%'],              radius: ['28%', '48%'],              avoidLabelOverlap: false,              labelLine: { //图形外文字线                normal: {                  length: 20,                  length2: 20                }              },              label: {                normal: {                  formatter: '{b|{b}} {c|{c}家}', //图形外文字上下显示                  borderWidth: 30,                  borderRadius: 4,                  padding: [0, 2], //文字和图的边距                  rich: {                    a: {                      color: '#333',                      fontSize: 14,                      lineHeight: 30                    },                    b: { //name 文字样式                      fontSize: 14,                      lineHeight: 40,                      color: '#CDCDD0',                    },                    c: { //value 文字样式                      fontSize: 14,                      lineHeight: 40,                      color: '#63BF6A',                      align: "center"                    }                  }                }              },              data: this.rows            },          ]

广告 广告

评论区