score:2

Accepted answer

Crosshair label is coupled with a specific axis. However, you can create two linked x axes. Top axis should be invisible but should be coupled with the crosshair and the label.

xAxis: [{
  opposite: true,
  crosshair: {
    label: {
      enabled: true,
      align: "right"
    }
  },
  visible: false
}, {
  linkedTo: 0,
  gridLineWidth: 1
}],

example: http://jsfiddle.net/p8fqq35v/


Related Query

More Query from same tag