Gauge Chart In Ng2-highcharts
I'm trying to find/work out how to implement a gauge using ng2-highcharts. I've been looking at how the line and bar charts are implemented in the angular2-seed-ng2-highcharts proj
Solution 1:
The gauge required the highcharts-more library, I added the following lines to the index.html and it resolved the above issue.
<scriptsrc="../node_modules/highcharts/highcharts.js"></script><scriptsrc="../node_modules/highcharts/highcharts-more.js"></script>
The chart now renders.
Post a Comment for "Gauge Chart In Ng2-highcharts"