My goal is to recreate the chart that can be found at this link: http://jsfiddle.net/pablojim/Hjdnw/ but within my angular application.
The difference is that I am using version 1.2.28 instead of v1.0 as shown in the example above.
I have duplicated my setup here: http://plnkr.co/edit/ugIbk80yBXuvjsUFhiiP?p=preview
Yet, I am encountering 2 errors in the console:
TypeError: HighchartsAdapter is not defined
Error: H is not a function
Could the order in which scripts are loaded be causing this issue? Currently, I am following this order:
<script data-semver="1.2.28" src="https://code.angularjs.org/1.2.28/angular.js" data-require="<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="85e4ebe2f0e9e4f7abeff6c5b4abb7abfd">[email protected]</a>"></script>
<script src="highcharts.js"></script>
<script src="highcharts-ng.js"></script>
<script src="app.js"></script>