echarts饼图

echarts饼图

option = {
    title: {
        //text: '某站点用户访问来源',
        //subtext: '纯属虚构',
        left: 'center'
    },
    tooltip: {
        trigger: 'item',
        formatter: '{a} <br/>{b} : {c} ({d}%)'
    },
    legend: {
        orient: 'vertical',
        textStyle: { 
                            
              fontSize: 38
        },
        right: 180,
        //borderWidth: 4,
        padding:10,
        itemWidth:50,
        itemHeight:25,

        top: 400,
        bottom: 20,
        data: ['测试一 2.2%', '测试二 21.3%', '测试三 76.5%']
    },
    series: [
        {
            name: '访问来源',
            type: 'pie',
            radius: '55%',
            center: ['50%', '60%'],
            right:600,
            label: {
                show: false,
                position: 'center'
            },
            emphasis: {
                label: {
                    show: true,
                    fontSize: '30',
                    fontWeight: 'bold'
                }
            },
            labelLine: {
                show: false
            },
            color:['#EB6F87', '#89C184', '#868686'],
            
            //data:[18,310,965]
            data: [
                {value: 18, name: '测试一 2.2%'},
                {value: 310, name: '测试二 21.3%'}
                {value: 965, name: '测试三 76.5%'}
            ]
            
            
        }
    ]
};
QQ 3087438119
原文地址:https://www.cnblogs.com/herd/p/13734917.html