雷达指数

描述:当前是关于Echarts图表中的 雷达图 示例。
 
            option = {
   backgroundColor: '#091c3d',
    color: [ '#00D0FF', '#FFD34D'],
    legend: {
        
    },
    radar: [
         {
            indicator: [
                { text: '生产安全', max: 100 },
                { text: '生态环境安全', max: 100 },
                { text: '社会治安安全', max: 100 },
                { text: '食品药品安全', max: 100 },
                { text: '社会政治安全', max: 100 },
                { text: '经济秩序平稳', max: 100 }
            ],
            radius: 120,
            splitNumber: 4,
            splitArea: {
              show:false,
            },
            axisLine: {
            
                lineStyle: {
                  color: 'rgba(255, 0, 0, 0)',
                },
              },
              splitLine: {
                lineStyle: {
                  width:1.5,
                  color: 'rgba(0, 208, 255, 0.4)',
                },
              },
            axisName: {
            color: 'rgba(255, 255, 255, 1)',
          },
        },
    ],
    series: [
      
        {
            name: '平安指数建设指标',
            type: 'radar',
            radarIndex: 0,
            symbol: 'none',
            data: [
                {
                    value: [100, 100, 100, 100, 100, 100],
                },
                {
                    value: [100, 93, 50, 90, 70, 60],
                    areaStyle: {
                         color: 'rgba(255, 211, 77, 0.4)'
                    },
                }
            ]
        }
    ]
};