教学活动分析

描述:当前是关于Echarts图表中的 饼图 示例。
 
            option = {
    backgroundColor: '#0A2E5D',
    tooltip: {
        trigger: '教学活动分析',
    },
     title: {
        text: '教学活动分析',
        textStyle:{
				color:'white',  //坐标的字体颜色
			},
    },
    legend: {
        orient: 'vertical',
        right: 10,
        data: ['趣味竞赛', '小组排名', '互动讨论','其他'],
        textStyle:{
				color:'white',  //坐标的字体颜色
			}
    },
    color : [  'purple','red', 'orange',  'green', 'blue', 'indigo' ],
    series: [
        
        {
            name: '教学活动占比',
            type: 'pie',
            radius: ['40%', '55%'],
            label: {
                formatter: '{a|{a}}{abg|}\n{hr|}\n  {b|{b}:}{c}  {per|{d}%}  ',
                backgroundColor: '#eee',
                borderColor: '#aaa',
                borderWidth: 1,
                borderRadius: 4,
                // shadowBlur:3,
                // shadowOffsetX: 2,
                // shadowOffsetY: 2,
                // shadowColor: '#999',
                // padding: [0, 7],
                rich: {
                    a: {
                        color: '#999',
                        lineHeight: 22,
                        align: 'center'
                    },
                    // abg: {
                    //     backgroundColor: '#333',
                    //     width: '100%',
                    //     align: 'right',
                    //     height: 22,
                    //     borderRadius: [4, 4, 0, 0]
                    // },
                    hr: {
                        borderColor: '#aaa',
                        width: '100%',
                        borderWidth: 0.5,
                        height: 0
                    },
                    b: {
                        fontSize: 16,
                        lineHeight: 33
                    },
                    per: {
                        color: '#eee',
                        backgroundColor: '#334455',
                        padding: [2, 4],
                        borderRadius: 2
                    }
                }
            },
            data: [
                {value: 435, name: '趣味竞赛'},
                {value: 120, name: '小组排名'},
                {value: 546, name: '互动讨论'},
                {value: 420, name: '其他'}
            ]
        }
    ]
};