Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.34 KB  |  hits: 24  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Highcharts: Access the Series or Axis context in Axis Formatter
  2. yAxis: {        
  3.     labels: {
  4.         formatter: function() {
  5.             console.log(this.axis); // Current Axis instance
  6.             console.log(this.chart); // The Chart instance
  7.             return this.value +' - ' + this.chart.options.chart.renderTo;
  8.         }
  9.     }
  10. }