Water Polo

描述:当前是关于Echarts图表中的 水球图 示例。
 
             var value = 0.60;
 var data = [value, value];
 option = {
     backgroundColor: '#212121',
     title: {
         text: (value * 100).toFixed(0) + '{a|%}',
         textStyle: {
             fontSize: 50,
             fontFamily: 'Microsoft Yahei',
             fontWeight: 'normal',
             color: '#fff',
             rich: {
                 a: {
                     fontSize: 28,
                 }
             }
         },
         x: 'center',
         y: '35%'
     },
     graphic: [{
         type: 'group',
         left: 'center',
         top: '60%',
         children: [{
             type: 'text',
             z: 100,
             left: '10',
             top: 'middle',
             style: {
                 fill: '#fff',
                 text: '流量统计',
                 font: '20px Microsoft YaHei'
             }
         }]
     }],
     series: [{
         type: 'liquidFill',
         radius: '80%',
         center: ['50%', '50%'],
        //  shape: 'roundRect',
         data: data,
         backgroundStyle: {
             color: '#212121',
         },
         outline: {
             borderDistance: 4,
             itemStyle: {
                 borderWidth: 5,
                 borderColor: "#212121",
                 shadowBlur:0,
             }
         },
         color: ['#f8b32d', '#6d300e'],
         label: {
             normal: {
                 formatter: '',
             }
         }
     }]
 };