刻度

描述:当前是关于Echarts图表中的 示例。
 
            option = {
    backgroundColor: '#121b30',
    title: [{
        text: '200%',
        x: '35%',
        y: '47%',
        textAlign: 'center',
        textStyle: {
            fontSize: 18,
            fontWeight: 800,
            color: '#e8f7ff',
            textAlign: 'center',
        },
    }],
    polar: {
        // radius: ['40%', '35%'],
        // center: ['35%', '50%'],
    },
    angleAxis: {
        max: 100,
        show: false,
        startAngle: 0,
    },
    radiusAxis: {
        type: 'category',
        show: true,
        axisLabel: {
            show: false,
        },
        axisLine: {
            show: false,

        },
        axisTick: {
            show: false
        },
    },
    series: [{
            type: 'pie',
            radius: ['30%', '29%'],
            center: ['35%', '50%'],
            data: [
                {
                    label: {
                        show: false
                    },
                    labelLine: {
                        normal: {
                            smooth: true,
                            lineStyle: {
                                width: 0
                            }
                        }
                    },
                    value: 100,
                    hoverAnimation: false,
                    itemStyle: {
                        color: 'rgba(255,255,255,0.20)',
                    },
                }
            ]
        },

        //最里圈
        {
            type: 'pie',
            radius: ['20%', '19%'],
            center: ['35%', '50%'],
            data: [
                {
                    label: {
                        show: false
                    },
                    labelLine: {
                        normal: {
                            smooth: true,
                            lineStyle: {
                                width: 0
                            }
                        }
                    },
                    value: 100,
                    hoverAnimation: false,
                    itemStyle: {
                        color: 'rgba(255,255,255,0.20)',
                    },
                }
            ]
        },
        //齿轮
        {
            name: "大环",
            type: 'gauge',
            splitNumber: 18,
            radius: '26%',
            center: ['35%', '50%'],
            startAngle: -35,
            endAngle: -269.9999,
            axisLine: {
                show: false,
                lineStyle: {
                    color: [
                        [0.2, '#1b3e55'],
                        [0.3, '#21779e'],
                        [0.4, '#2baade'],
                        [0.6, '#289aca'],
                        [0.7, '#2fc0f8'],
                        [0.8, '#1b9fff'],
                        [1, '#0175ff']
                    ]
                }
            },
            axisTick: {
                show: false
            },
            splitLine: {
                show: true,
                length: 20,
                lineStyle: {
                    color: 'auto',
                    width: 5
                }
            },
            axisLabel: {
                show: false
            },
            detail: {
                show: false
            }
        },


    ]
};