highchars隐藏x,y轴及刻度线

yAxis: {
    min: 0,
    max: 100,
    gridLineWidth: 0, //隐藏y轴刻度线
    title: {
        text: ''
    },
    labels: {
        enabled: false
    }
},
xAxis: {
    lineWidth: 0,  //去掉x轴线
    tickWidth: 0,   //去掉刻度
    categories: ['1', '2', '3', '4', '5', '6', '7', '8', '9'],
    labels: {
        style: {
            color: '#444444',
        }
    }
},

猜你喜欢

转载自blog.csdn.net/jpjp2020/article/details/80844599