0

Here's an example how to plot the chart with json data

Is there a way to chart this from public data (meaning any listed company)? For example from bloomberg data? https://www.bloomberg.com/markets/chart/data/1D/AAPL:US

I guess the format is just wrong?

niksos
  • 433
  • 1
  • 7
  • 19
  • http://jsfiddle.net/gh/get/jquery/3.1.1/highcharts/highcharts/tree/master/samples/stock/demo/basic-line/ – niksos Dec 16 '18 at 20:51

1 Answers1

0

For Highcharts the structure of data is important, not the source. All you should do is set the correct link and series data, but unfortunately I see a problem with CORS: How does Access-Control-Allow-Origin header work?

    series: [{
        data: data.data_values,
        ...
    }]

Live demo: http://jsfiddle.net/BlackLabel/5u0jv31y/

ppotaczek
  • 36,341
  • 2
  • 14
  • 24