gevgeny / angular2-highcharts

:bar_chart: :chart_with_upwards_trend: Highcharts for your Angular project
MIT License
381 stars 113 forks source link

serie type of columnrange #270

Open thaison316 opened 5 years ago

thaison316 commented 5 years ago

has anyone been successful of using columnrange type for series? I get this error.

The requested series type does not exist

This error happens when you are setting chart.type or series.type to a series type that isn't defined in Highcharts. A typical reason may be that your are missing the extension file where the series type is defined, for example in order to run an arearange series you need to load the highcharts-more.js file.

kuvelas commented 5 years ago

columnrange is in highcharts-more, so under the import of Highcharts, add:

require('highcharts/highcharts-more')(Highcharts);

You may want to look at an alternative Highcharts wrapper because this repo is dead. Last commit was 2/14/2017. This is the one we are looking at: https://github.com/cebor/angular-highcharts

tibinvpaul commented 5 years ago

No updates for last 2 years. There is an official Angular wrapper of Highcharts.