Indeed, each chart is stored within HighChart's Highcharts.charts
array. The webpage you provided contains a single chart:
Highcharts.charts
-> [ z.Chart ]
This particular object holds all the data for that chart. By selecting it from the Highcharts.charts
array using index 0
:
Highcharts.charts[0]
-> z.Chart { ... }
All necessary information can be found here. Each chart object has a series
property, which is an array containing data for each series displayed on the chart. Within each series, there is a data
property holding the actual data, and the name
property indicating the series name.
For instance:
Highcharts.charts[0].series[0].name
-> "APPL"
Highcharts.charts[0].series[0].data
-> Array[1774]
The layout of HighCharts' documentation mirrors the structure of the JavaScript object it generates. You can explore it further here: http://api.highcharts.com/highcharts.