Bigous / ng2-highcharts

Angular2 library to use Highcharts out of the box
59 stars 23 forks source link

How to update chart series or access Highcharts object #92

Open mluis opened 6 years ago

mluis commented 6 years ago

I'm trying to update highcharts data series dynamically with parallel HTTP requests, although can't find out how to update the series neither how to access the main Highcharts object, just the chartOptions object.

There is no documentation on this. Would you mind giving support for these docs?

Thank you.

mluis commented 6 years ago

If I import Highcharts I get the Error 16.

mluis commented 6 years ago

Took a reference from here

@ViewChild(Ng2Highcharts)
  chartElement: Ng2Highcharts;

...

this.chartElement.draw(this.datexChartOptions);

Managed to make it work, although the colors of the series are the same..