score:5

Accepted answer

check xAxis.plotLines.label.y to adjust the label positin

Fiddle demo

 yAxis: {
    plotLines: [{
        color: 'red',
        width: 2,
        value: 100,
        label: {
            text: 'Plot line',
            align: 'right',
            y: 20, /*moves label down*/
        }
    }]
},

Related Query

More Query from same tag