yAxis: { min: 0, gridLineInterpolation : 'polygon', lineWidth : 0},即使绘制为多边形,整个图表仍然有一个圆圈,就好像它是一个雷达图。我怎样才能删除它?谢谢这里是一个小提琴示例https://jsfiddle.net/mryg2vhq/
1 回答
qq_遁去的一_1
TA贡献1725条经验 获得超7个赞
这是您的案例的工作小提琴:https : //jsfiddle.net/narkhedetusshar/v2jydeq1/10/
xAxis: {
tickInterval: 45,
min: 0,
max: 360,
lineWidth: 0, // you need to add this line
labels: {
format: '{value}°'
}
},
添加回答
举报
0/150
提交
取消