其他分享
首页 > 其他分享> > echarts 双环饼形图

echarts 双环饼形图

作者:互联网

 

 

option = {
    tooltip: {
        show: true,
        formatter: "{a}:{d}%"
    },
    series: [
        {
            name: '销量3',
            type: 'pie',
            hoverAnimation: false, //鼠标移入变大
            clockWise: false,
            radius: ['50%', '55%'],
            itemStyle: {
                 normal: {
                    color: '#4cabfe',
                    label: {
                        show: false
                    },
                    labelLine: {
                        show: false
                    }
                }
            },
            data: [
                {
                    value:20,
                    name: 'invisible',
                    itemStyle: {
                        normal: {
                            color: 'rgba(0,0,0,0)',
                         },
                    }
                },
                {
                    value:80,
                    name: '销量3'
                }

            ],

        },
        {
            name: '销量2',
            type: 'pie',
            clockWise: false,
             hoverAnimation: false, //鼠标移入变大
            radius: ['45%', '50%'],
            itemStyle: {
                 normal: {
                    color: '#ffaf00',
                    label: {
                        show: false
                    },
                    labelLine: {
                        show: false
                    }
                }
            },
          
            data: [{
                    value: 10,
                    name: 'invisible',
                    itemStyle: {
                         normal: {
                            color: 'rgba(0,0,0,0)',
                         },
                    }
                },
                {
                    value: 90,
                    name: '销量2'
                }
            ]
        },
       

    ]
};

 

标签:false,name,show,color,双环,normal,itemStyle,形图,echarts
来源: https://www.cnblogs.com/yunyin/p/14232316.html