删除Highcahrts中蜘蛛网图周围的圆圈

问题描述 投票:0回答:1
yAxis: {
    min: 0,
    gridLineInterpolation : 'polygon',
    lineWidth : 0
},

即使将其绘制为多边形,但在整个图表周围仍然有一个圆圈,就好像它是雷达图一样。如何删除?谢谢这是一个小提琴的例子

https://jsfiddle.net/mryg2vhq/

javascript highcharts
1个回答
1
投票

这里正在为您的案子提琴:https://jsfiddle.net/narkhedetusshar/v2jydeq1/10/

xAxis: {
    tickInterval: 45,
    min: 0,
    max: 360,
    lineWidth: 0, // you need to add this line 
    labels: {
        format: '{value}°'
    }
},
© www.soinside.com 2019 - 2024. All rights reserved.