score:15

Accepted answer

you'll have to specify a tooltip formatter yourself (see documentation):

tooltip: {
  formatter: function() {
    return 'the value for <b>'+ this.x +
           '</b> is <b>'+ this.y +'</b>';
  }
},

there you can just show the x-values if you like or your custom text.
hope that helps.

score:0

if you want to format the second line of the tool tip, but leave the x-axis label name alone you can use point format instead of formatter.

tooltip: {
     pointformat: 'the value is point.y'
},

score:2

i have modified the demo and created a new demo here

to customize the text displayed in the tooltip, you should use it like:

highcharts.chart('container', {

    title: {
        text: 'solar employment growth by sector, 2010-2016'
    },

    subtitle: {
        text: 'source: thesolarfoundation.com'
    },
........
.....
....

    tooltip: {
      formatter: function() {
        return '<strong>x value: </strong>'+ this.x;
      }
    },
}); 

Related Query

More Query from same tag