echarts饼图-绘制中心圆

echarts饼图-绘制中心圆,第1张

1、效果

2.代码

 graphic: {
          elements: [
            {
              type: 'circle',
              left: 'center',
              top: 'center',
              shape: {
                r: 70,
              },

              style: {
                fill: 'rgba(145,216,255,0.07)',
              },
              enterFrom: {
                style: { opacity: 0 },
              },
            },
            {
              type: 'circle',
              shape: {
                r: 60,
              },
              left: 'center',
              top: 'center',
              enterFrom: {
                style: { opacity: 0 },
              },
              style: {
                fill: 'transparent',
                stroke: 'rgba(0,109,252,0.2',
                lineWidth: 2,
              },
            },
          ],
        },

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1296320.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)

保存