score:11

Accepted answer

Compare http://jsfiddle.net/BNFe5/

The difference is here:

yAxis: {
    labels: {
        formatter: function() {
            return this.value;
        }
    }
},

score:2

If you are using thousands and millions in one chart, check this out.

yAxis: {
    labels: {
        formatter: function () {
            if (this.value.toFixed(0) >= 1000000) {
                return '$' + this.value.toFixed(0) / 1000000 + 'M';
            } else {
                return '$' + this.value.toFixed(0) / 1000 + 'K';
            }
        }
    },
    title: {
        text: ''
    }
},

score:5

For Converting your yaxis values into 1k,2k,3k,4k,etc:

yAxis: 
{
    labels: 
    { 
      formatter: function() 
      {
         return Math.round(this.value/1000) + 'k';
      }
    }
},

Related Query

More Query from same tag