金字塔echarts 饼配置项内容和展示

配置项如下
      
// github: github.com/jackshawn/pics-by-echarts

// 微博上看到的图

option = {
    legend: {
        orient: 'vertical',
        left: 'left',
        data: ['天空', '金字塔亮的一面', '金字塔暗的一面']
    },
    series: [{
        type: 'pie',
        data: [{
            value: 270,
            name: '天空'
        }, {
            value: 25,
            name: '金字塔暗的一面',
            itemStyle: {
                normal: {
                    color: '#5C3926'
                }
            }
        }, {
            value: 65,
            name: '金字塔亮的一面',
            itemStyle: {
                normal: {
                    color: '#D3A359'
                }
            }
        }],
        startAngle: -135,
        itemStyle: {
            normal: {
                color: '#425E8D'
            }
        },
        labelLine: {
            normal: {
                show: false
            }
        },
        label: {
            normal: {
                show: false
            }
        },
        silent: true
    }]
};
    
截图如下