Reputation: 563
How can I show an arrow pointing to the middle of y-axis on highcharts as below image:
and this is my y-axis:
yAxis: [{
gridLineWidth: 0,
labels: {
enabled: false
},
title: {
text: 'Your starting point',
style:{
font: '6px arial'
}
},
min: 0,
max: 1000
}]
Upvotes: 0
Views: 677
Reputation: 17791
You could do this by
1) using an image, or an icon font, in your axis title
2) using the Highcharts renderer function to draw the arrow
reference:
Upvotes: 2