score:2

Accepted answer

The fiddle you are using includes the new jQuery-ish container methods like:

$('#container').highcharts('StockChart', {

This not supported below v1.3. You will need to modify the code to do something like:

window.chart = new Highcharts.StockChart({

See here for basic example.


Related Query

More Query from same tag