区分环形的问题 data[0],data[1]如何再分出两条数据

描述:当前是关于Echarts图表中的 饼图 示例。
 
            option = {
    tooltip: {
        show: true
    },
    legend: {
        x: 'center',
        data: ['上午男', '上午女', '下午男', '下午女']
    },
    series: [{
        name: '出工统计',
        type: 'pie',
        radius: ['50%', '60%'],
        avoidLabelOverlap: false,
        label: {
            normal: {
                show: false,
                position: 'center'
            },
            emphasis: {
                show: true,
                textStyle: {
                    fontSize: '30',
                    fontWeight: 'bold'
                }
            }
        },
        labelLine: {
            normal: {
                show: false
            }
        },
        data: [{
                value: 10,
                name: '上午',
                tooltip:{
                	 formatter: "{a} <br/>{b} : {c} ({d}%)"
                }
            },
            { value: 10,
            name: '下午',
             tooltip:{
                	 formatter: "{a} <br/>{b} : {c} ({d}%)"
                }
                
            },

        ]
    },
    {
        name: '出工统计',
        type: 'pie',
        radius: ['50%', '40%'],
        avoidLabelOverlap: false,
        label: {
            normal: {
                show: false,
                position: 'center'
            },
            emphasis: {
                show: true,
                textStyle: {
                    fontSize: '30',
                    fontWeight: 'bold'
                }
            }
        },
        labelLine: {
            normal: {
                show: false
            }
        },
        data: [{
                value: 10,
                name: '上午',
                tooltip:{
                	 formatter: "{a} <br/>{b} : {c} ({d}%)"
                }
            },
            { value: 10,
            name: '下午',
             tooltip:{
                	 formatter: "{a} <br/>{b} : {c} ({d}%)"
                }
                
            },

        ]
    },
    {
        name: '出工统计',
        type: 'pie',
        radius: ['40%', '30%'],
        avoidLabelOverlap: false,
        label: {
            normal: {
                show: false,
                position: 'center'
            },
            emphasis: {
                show: true,
                textStyle: {
                    fontSize: '30',
                    fontWeight: 'bold'
                }
            }
        },
        labelLine: {
            normal: {
                show: false
            }
        },
        data: [{
                value: 10,
                name: '上午',
                tooltip:{
                	 formatter: "{a} <br/>{b} : {c} ({d}%)"
                }
            },
            { value: 10,
            name: '下午',
             tooltip:{
                	 formatter: "{a} <br/>{b} : {c} ({d}%)"
                }
                
            },

        ]
    }]

};