Add a custom tick to yAxis
The chart calculates the tick intervals for yAxis.
It is possible to set tickPositioner function or add custom tick positions, but what if I only want to add a single tick? Is it ok to override the entire native tick calculation function?
1
vote
lvil
shared this idea
Use `tickPositioner`. In the callback, you have access to `this.tickPositions` so modify this array (e.g. by adding one tick) as you wish.
Docs: https://api.highcharts.com/highcharts/yAxis.tickPositioner
-
tickPositioner or tickPositions options should work for this. Have you tried?