I'm using the Angular directive for HighCharts, https://github.com/pablojim/highcharts-ng.
However I want to use the HighStock option which should be possible according to the above link by setting useHighStocks: true.
When I try this the chart won't load at all, but works just fine when it's set to false. I even tried to include the highstock.js from official site but with no luck.
Original jsfiddle: http://jsfiddle.net/pablojim/7cAq3/
My non-working highstock jsfiddle: http://jsfiddle.net/achronos/7LZv4/1/
$scope.chartConfig = {
options: {
chart: {
type: 'line',
zoomType: 'x'
}
},
series: [{
data: [10, 15, 12, 8, 7, 1, 1, 19, 15, 10]
}],
title: {
text: 'Hello'
},
xAxis: {currentMin: 0, currentMax: 10, minRange: 1},
loading: false,
useHighStocks: true
}
What can I do to make it work? Thanks