Today was my first day using highcharts and I ran into an issue when trying to use their provided code. When I changed the url of the json file, the graphic stopped loading.
Original code:
$.getJSON('https://www.highcharts.com/samples/data/jsonp.php?filename=usdeur.json&callback=?', function (data)
I made the change to:
$.getJSON('http://localhost:55529/content/dados/data.json', function (data)
This is what my json file looks like:
[
[Date.UTC(2013,5,2),0.7695],
[Date.UTC(2013,5,3),0.7648]
]
Anyone able to offer some assistance?