案件事项执法结果分析

描述:当前是关于Echarts图表中的 雷达图 示例。
 
            var option = {
      backgroundColor:'#fff',
      title: {
          text: '案件事项执法结果分析'
      },
      tooltip: {
          trigger: 'axis'
      },
      legend: {
          data: ['案件事项执法结果分析']
      },
      
      radar: {
          indicator: [{
              text: '取缔无证经营',
              max: 100
              
          }, {
              text: '捣毁制假售假窝点',
              max: 100
          }, {
              text: '停业整顿',
              max: 100
          }, {
              text: '吊销许可证',
              max: 100
          }, {
              text: '移交司法机关',
              max: 100
          }],
            radius: 90,
          splitNumber: 7,
          name: {
              textStyle: {
                  color: '#201E1F'
              }
          },
          axisLine: {
              lineStyle: {
                  color: '#B3DBF5',
                  width: 2,
                  type: 'dotted'
              },
          },
          splitLine: {
              lineStyle: {
                  color: ['#B3DBF5', 'transparent', 'transparent', 'transparent'],
                  width: 1
              }
          },
          splitArea: {
              areaStyle: {
                  
                  color: ['#C1C1C1', '#fff']
              }
          }
      },
      series: [{
          type: 'radar',
          tooltip: {
              trigger: 'item'
          },
          symbol: 'circle',
          symbolSize: 5,
          radius:'',
          itemStyle: {
              normal: {
                  areaStyle: {type: 'default'},
                  color: '#C6E2FF',
                  borderColor: '#5ac3bd',
                  shadowColor:'rgba(0,0,0,0.5)'
              }
          },
          data: [{
              value: [60, 33, 15, 50, 100],
              name:'案件事项执法结果分析'
          }]
      }, ]
  };