echart 餅圖 上下padding怎麼去掉,用了grid沒有效果

新手上路,请多包涵

图片描述


  this.EChart.setOption({
        tooltip: {
            trigger: 'none',
            formatter: '{b}: {c} ({d}%)'
        },
        backgroundColor:'#ffffff',
        title: [{
                text: '',
                left: '49%',
                top: '48%',
                textAlign: 'center',
                textBaseline: 'middle',
                textStyle: {
                    color: '#000',
                    fontWeight: 'bold',
                    fontSize: 23
                }
            }, {
                text: '',
                left: '49%',
                top: '55%',
                textAlign: 'center',
                textBaseline: 'middle',
                textStyle: {
                    color: '#000',
                    fontWeight: 'normal',
                    fontSize: 12
                }
            }],
        series: [{
             hoverAnimation: false, //设置饼图默认的展开样式
            radius: ['55%', '75%'],
             name: 'pie',
             type: 'pie',
             center:['50%', '50%'],
             selectedMode: false,
             selectedOffset: 0, //选中是扇区偏移量
             clockwise: true,
             startAngle: 90,
             label: {
                 normal: {
                     show: false
                 }
             },
             labelLine: {
                 normal: {
                     show: false
                 }
             },
              itemStyle: {
                normal: {
                    borderWidth: 0,
                    borderColor: '#ffffff',
                },
                emphasis: {
                    borderWidth: 0,
                    shadowBlur: 5,
                    shadowOffsetX: 0,
                    shadowColor: 'rgba(0, 0, 0, 0.2)'
                }
            },
             data: []
         }],
    
    grid: {
        top:0,
        bottom:0,
        // show: true
    }
  });
阅读 5.6k
1 个回答
✓ 已被采纳新手上路,请多包涵

radius改成100%即可。。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题