echarts 雷达图怎样设置圆弧线

求问,用echarts画了个雷达图,如图1,

img

有没有办法把各个数据之间的连线变成弧线啊,就像这种:

img

这是设置的代码
option = {
  color: ['#edad5f', '#ffdd86 '],
  title: {
    text: 'Customized Radar Chart'
  },
  legend: {},
  radar: [
    {
      indicator: [
        { text: 'More than a feeling' },
        { text: 'More than a product' },
        { text: 'More than a phase' }
      ],
      center: ['25%', '50%'],
      radius: 120,
      startAngle: 90,
      splitNumber: 4,
      shape: 'circle',
      axisName: {
        formatter: '{value}',
        color: '#428BD4'
      },
      splitArea: {
        areaStyle: {
          //color: ['#77EADF', '#26C3BE', '#ccc', '#ccc'],
          //shadowColor: 'rgba(0, 0, 0, 0.2)',
          //shadowBlur: 10
        }
      },
      axisLine: {
        lineStyle: {
          color: 'rgba(128, 128, 128, 0.5)'
        }
      },
      splitLine: {
        lineStyle: {
          color: 'rgba(128, 128, 128, 0.5)'
        }
      }
    }
  ],
  series: [
    {
      type: 'radar',
      emphasis: {
        lineStyle: {
          width: 4
        }
      },
      data: [
        {
          value: [2, 3, 1],
          name: 'Kelvin',
          areaStyle: {
            color: 'rgb(237, 172, 95)'
          },
          label: {
            show: true,
            formatter: function (params) {
              return params.value;
            }
          }
        },
        {
          value: [3, 3, 3],
          name: 'Average',
          areaStyle: {
            color: 'rgb(255, 220, 134)'
          },
          label: {
            show: true,
            formatter: function (params) {
              return params.value;
            }
          }
        }
      ]
    }
  ]
};

试过smooth:true但是没有用

echat曲线图:https://blog.csdn.net/weixin_46391404/article/details/121079428

看了文档 没有 找到 对应的属性

不知道你这个问题是否已经解决, 如果还没有解决的话:

如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 写成博客, 将相关链接放在评论区, 以帮助更多的人 ^-^