I'm new to highcharts - I am having difficulties getting the highcharts line-ajax demo working (from examples/line-ajax/index.htm)
The demo code includes analytics.tsv', apparently because it is tab delimited. However the index.htm file is looking for 'analytics.csv'. So I changed all that around, but no joy.
I downloaded (from some highcharts demo site) a analytics.csv file, and still no joy.
The highcharts documentation says that 'data' is contained within 'series'. In the demo, it stands just under the jquery selector, with the 'series' specified last in the selector with no 'data' entry.
$('#container').highcharts({
data: {
csv: csv
},
...
At http://www.highcharts.com/demo/line-ajax, it works fine. However if you look at http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/line-ajax/ the demo fails. If you have dev tools enabled on your browser, you'll see it complaining about a missing analytics.csv file
So, my question is simple, what do I need to do to get highcharts own demo working ?
And to clarify, I'm not interested in 'in page' data, I'm specifically interested in loading data into the chart using ajax.