I am having an issue of relocate yAxis.plotLines.label position.
I want to move label from original position to under the plotLine. Please check this link
Highcharts.chart('container', {
xAxis: {
tickInterval: 24 * 3600 * 1000, // one day
type: 'datetime'
},
yAxis: {
plotLines: [{
color: 'red',
width: 2,
value: 100,
label: {
text: 'Plot line',
align: 'right'
}
}]
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4],
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000
}]
});
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*/
}
}]
},
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With