option = { backgroundColor: 'transparent',//全局设置背景色 tooltip : { show: true, formatter: "{a} <br/>{b} : {c} ({d}%)" }, color:['#62ECCE', '#74A1FE','#EC658B',"#ECC766"], legend: { orient: 'vertical', icon : 'circle', right:'0', data: ['手机支付统计','网络钱包统计','投币支付统计','卡内钱包统计'], textStyle:{ color:'#fff' } }, series : [ { name:'今日消费金额', type: 'pie', radius: '50%', center: ['45%', '50%'], label: { normal: { formatter: '{b} : {c}' } }, data:[ {value:123, name:'手机支付统计'}, {value:456, name:'网络钱包统计'}, {value:789, name:'投币支付统计'}, {value:567, name:'卡内钱包统计'} ], itemStyle: { emphasis: { shadowBlur: 10, shadowOffsetX: 0, shadowColor: 'rgba(0, 0, 0, 0.5)' } } } ] };