Search code examples
jqueryhighchartstooltiplabelaxis-labels

How do I add a tooltip to the x-axis labels in highcharts?


How do I add a tooltip to the x-axis labels in highcharts?

xAxis: {
  categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas'],
  labels: {
    x: 5,
    useHTML: true,
    formatter: function () {
      return categoryImgs[this.value];
    }
  }
}

Currently, tooltips are only shown on the points in the chart, I want the user to also see a tooltip/custom description when hovering on the labels on x-axis. Is that possible? Thanks


Solution

  • In general Highcharts doesn't support tooltip on labels.

    However you have two solutions: