sebastienlachance
6/20/2013 - 3:34 PM

Change the Y axis unit on Highcharts

Change the Y axis unit on Highcharts

yAxis: {
  title: {
    text: ''
  },
  labels: {
    formatter: function () {
      return this.value / 1000 + 'M';
    }
  }
},