有外环和内圆的饼图

描述:当前是关于Echarts图表中的 饼图 示例。
 
            option = {
    "backgroundColor": "black", 
    "legend": {
        "show": false, 
        "color": "#C7DDFF", 
        "orient": "vertical", 
        "right": "20%", 
        "top": "30%", 
        "animation": true
    }, 
    "series": [
        {
            "color": [
                {
                    "colorStops": [
                        {
                            "offset": 0, 
                            "color": "#ffd546"
                        }, 
                        {
                            "offset": 1, 
                            "color": "#ffeba5"
                        }
                    ], 
                    "x": 0, 
                    "y": 0, 
                    "x2": 1, 
                    "y2": 0, 
                    "type": "linear", 
                    "global": false
                }, 
                {
                    "colorStops": [
                        {
                            "offset": 0, 
                            "color": "#18c6ce"
                        }, 
                        {
                            "offset": 1, 
                            "color": "#6ef6fc"
                        }
                    ], 
                    "x": 0, 
                    "y": 0, 
                    "x2": 1, 
                    "y2": 0, 
                    "type": "linear", 
                    "global": false
                }, 
                {
                    "colorStops": [
                        {
                            "offset": 0, 
                            "color": "#0092fb"
                        }, 
                        {
                            "offset": 1, 
                            "color": "#6dc2ff"
                        }
                    ], 
                    "x": 0, 
                    "y": 0, 
                    "x2": 1, 
                    "y2": 0, 
                    "type": "linear", 
                    "global": false
                }, 
                {
                    "colorStops": [
                        {
                            "offset": 0, 
                            "color": "#fb6666"
                        }, 
                        {
                            "offset": 1, 
                            "color": "#e2a1a1"
                        }
                    ], 
                    "x": 0, 
                    "y": 0, 
                    "x2": 1, 
                    "y2": 0, 
                    "type": "linear", 
                    "global": false
                }
            ], 
            "type": "pie", 
            "radius": [
                "60%", 
                "75%"
            ], 
            "center": [
                "50%", 
                "50%"
            ], 
            "label": {
                "show": false
            }, 
            "itemStyle": {
                "borderWidth": 2, 
                "borderColor": "#053258"
            }, 
            "minAngle": 5, 
            "data": [
                {
                    "name": "裂缝", 
                    "value": "249", 
                    "ratio": "30.04"
                }, 
                {
                    "name": "剥落、掉角", 
                    "value": "215", 
                    "ratio": "25.93"
                }, 
                {
                    "name": "蜂窝、麻面", 
                    "value": "93", 
                    "ratio": "11.22"
                }, 
                {
                    "name": "其它", 
                    "value": 272, 
                    "ratio": "32.81"
                }
            ]
        }, 
        {
            "color": [
                "#1a4a8c", 
                "rgba(0,0,0,0)", 
                "#1a4a8c", 
                "rgba(0,0,0,0)"
            ], 
            "type": "pie", 
            "radius": [
                "89%", 
                "90%"
            ], 
            "center": [
                "50%", 
                "50%"
            ], 
            "label": {
                "show": false
            }, 
            "select": {
                "display": false
            }, 
            "tooltip": {
                "show": false
            }, 
            "data": [
                25, 
                25, 
                25, 
                25
            ]
        }, 
        {
            "type": "pie", 
            "name": "内层细圆环", 
            "radius": [
                "0%", 
                "45%"
            ], 
            "hoverAnimation": false, 
            "clockWise": false, 
            "itemStyle": {
                "normal": {
                    "color": "#13386a"
                }
            }, 
            "label": {
                "show": false
            }, 
            "data": [
                100
            ]
        }, 
        {
            "type": "pie", 
            "name": "内层细圆环", 
            "radius": [
                "45%", 
                "47%"
            ], 
            "hoverAnimation": false, 
            "clockWise": false, 
            "itemStyle": {
                "normal": {
                    "color": "#326cb8"
                }
            }, 
            "label": {
                "show": false
            }, 
            "data": [
                100
            ]
        }
    ]
}