option
option1 = { tooltip: { trigger: 'axis' }, legend: { left: 'center' }, radar: [ { indicator: [ { text: '适应能力', max: 100 }, { text: '语言', max: 100 }, { text: '精细动作', max: 100 }, { text: '思维逻辑', max: 100 }, { text: '大运动', max: 100 } ], radius: 50, center: ['50%', '50%'], axisLine: { lineStyle: { color: "#2565d6", }, }, name: { textStyle: { color: "#AADDFF" }, }, splitArea: { show: false, areaStyle: { color: "#2565d6", // 图表背景的颜色 }, }, splitLine: { lineStyle: { width: 2, color: "#2565d6", // 设置网格的颜色 }, }, } ], series: [ { type: 'radar', tooltip: { trigger: 'item' }, areaStyle: { color: ['#4391cc'] }, lineStyle: { color: ['#00CBF6'] }, data: [ { value: [100, 80, 50, 80, 60], itemStyle: { normal: { color: '#70eefc', }, }, } ] }, ] };
复制