使用borderWidth后出现每段端点处出现尖角,怎么去除尖角?echarts 饼配置项内容和展示

如题

配置项如下
      option = {
  series : [ {
		type : 'pie',
		radius : [ '55%', '56%' ],
		center : [ '50%', '50%' ],
		//roseType : 'radius',
		itemStyle : {
			normal : {
				label : {
					show : false
				},
			}
		},
		hoverAnimation: false,
		data : [ {
			value : 75,
			itemStyle:{
				normal:{
				 borderColor: "#AAD2FF",
				borderWidth:10
				}
			}
		}, {
			value : 25,
			itemStyle:{
				normal:{
				 borderColor: "#509FF8",
				 borderWidth:20
				}
			}
		} ]
	} ]

};
    
截图如下