Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

echarts 图形占满整个容器

如图,蓝色背景是容器,但是echarts图上下左右还有很多空间.导致显示不够.怎么铺满一点?
图片描述

tooltip: {
    formatter: "{a} <br/>{b} : {c}%"
},
grid: {
    top: 0,
    bottom: 0
},
toolbox: {
    show: false
},
pointer: {
    length: '10%',
    width: 4,
    color: 'auto'
},
series: [{
    name: '总数',
    type: 'gauge',
    max: 100,
    detail: {
        formatter: '{value}',
        offsetCenter: [0, '10%'],
        textStyle: {
            color: 'auto',
            fontSize: 12
        }
    },
    data: [{ value: 50, name: '总数' }]
}]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

仪表盘类型的图在series属性里面加上 radius: '100%',就可以占满了~


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...