All the examples on the Highchart website creates a stockchart using:
$('#container').highchart('Stockchart', config);
How do I create a stock chart by simply using new? eg:
var chart = new Highchart('Stockchart', config)
I tried that, and this...
var chart = new HighStock(config)
...with no luck.