I'm using json to load the charts. I need now to show additional data in the tooltip. I see this example: Set Additional Data to highcharts series
In my page I'm loading a json like this...
[{y:5,test:"test"},{....}]
and in the js file. I tried this :
var options = { chart: {....};
options.series[0].data = json;
When I try to load the charts, it doesn't. What am I doing wrong?