0

Is it possible to attach additional data to a data point, and later access that data directly from an event handler?

series: [{
    data: [
        { x: ..., y: ..., customProperty:... }
    ]
}]

http://jsfiddle.net/JGCmt/1/

ejain
  • 3,456
  • 2
  • 34
  • 52

1 Answers1

1

Yes it is possible to access the date from an event handler.

event.point.options.customProperty

DEMO

msapkal
  • 8,268
  • 2
  • 31
  • 48