score:2

this issue happens only when the chart is inverted.

it's a bug reported on github: https://github.com/highcharts/highcharts/issues/4608


the workaround here is to create inverted chart manually (which can be done via chart options and preprocessing the data):

  • swap x and y values for all points
  • set reversed to true for the y axis (when chart is inverted it's set by default: https://api.highcharts.com/highcharts/chart.inverted)
  • swap formatting and zoom options for axes
  • handle the format of tooltip (tooltip.formatter may be useful)

Related Query

More Query from same tag