- Highcharts: Access the Series or Axis context in Axis Formatter
- yAxis: {
- labels: {
- formatter: function() {
- console.log(this.axis); // Current Axis instance
- console.log(this.chart); // The Chart instance
- return this.value +' - ' + this.chart.options.chart.renderTo;
- }
- }
- }