score:1

Accepted answer

I got the answer. Here it is

xAxis: {
            tickWidth: 0,
            lineWidth:0,
            gridLineWidth: 0,
            labels:{
                enabled:false
            }
        },
        yAxis: {
            title: {
              text: ''
            },
            tickWidth: 0,
            lineWidth:0,
            gridLineWidth: 0,
            labels:{
                enabled:false
            }
        },

score:0

try this

    xAxis: {
        gridLineWidth: 0,
        labels: {
           enabled: false
        }
    },
    yAxis: {
        gridLineWidth: 0,
        labels: {
           enabled: false
        }
    },            

Related Query

More Query from same tag