https://juejin.cn/post/6844903528733884429
https://echarts.apache.org/examples/zh/editor.html?c=radar
直接替换 options
image.png

雷达

image.png

  1. {
  2. radar:[{
  3. indicator:[
  4. {text: "思考能力", max: 200},
  5. {text: "技术能力", max: 200},
  6. {text: "做事效率", max: 200},
  7. {text: "总结能力", max: 200},
  8. {text: "演讲能力", max: 200},
  9. {text: "技术领导力", max: 200},
  10. {text: "影响力", max: 200}
  11. ],
  12. radius: 240,
  13. shape: "rect",
  14. splitNumber: 4,
  15. //文字颜色
  16. name:{
  17. textStyle:{color: "#000", fontFamily: '行楷'}
  18. },
  19. splitLine: {
  20. lineStyle: {
  21. color: [
  22. '#95dde2','#5cc1c7','#2d8d93','#abdada'
  23. ].reverse()
  24. }
  25. },
  26. axisLine: {
  27. lineStyle: {
  28. color: '#abdada'
  29. }
  30. },
  31. splitArea: {
  32. areaStyle: {
  33. color: [
  34. '#2d8d93','#5cc1c7','#95dde2','#d5f0f2'
  35. ]
  36. }
  37. }
  38. }],
  39. series: [
  40. {
  41. type: 'radar',
  42. data: [
  43. {
  44. value: [130,100,160,199,80,190,180],
  45. symbolSize: 0,
  46. lineStyle: {
  47. normal: {
  48. type: 'solid',
  49. color: '#ee6049',
  50. width: 2
  51. }
  52. }
  53. }
  54. ]
  55. }
  56. ]}