https://juejin.cn/post/6844903528733884429
https://echarts.apache.org/examples/zh/editor.html?c=radar
直接替换 options
雷达
{
radar:[{
indicator:[
{text: "思考能力", max: 200},
{text: "技术能力", max: 200},
{text: "做事效率", max: 200},
{text: "总结能力", max: 200},
{text: "演讲能力", max: 200},
{text: "技术领导力", max: 200},
{text: "影响力", max: 200}
],
radius: 240,
shape: "rect",
splitNumber: 4,
//文字颜色
name:{
textStyle:{color: "#000", fontFamily: '行楷'}
},
splitLine: {
lineStyle: {
color: [
'#95dde2','#5cc1c7','#2d8d93','#abdada'
].reverse()
}
},
axisLine: {
lineStyle: {
color: '#abdada'
}
},
splitArea: {
areaStyle: {
color: [
'#2d8d93','#5cc1c7','#95dde2','#d5f0f2'
]
}
}
}],
series: [
{
type: 'radar',
data: [
{
value: [130,100,160,199,80,190,180],
symbolSize: 0,
lineStyle: {
normal: {
type: 'solid',
color: '#ee6049',
width: 2
}
}
}
]
}
]}