I have taken a look at #10 #42 #19.
However, just using this code
<div [ng2-highcharts]="chartData"></div>
and replacing the whole charData object properties triggers complete rerender as expected.
Accessing the reference is not available by default so there is no easy way to actually just update the data. The setInterval example you mentioned also replaces the whole object.
Could an init event be added (similar as for example angular-highcharts) and #10 workaround, so that this would be as easy as:
Hi.
I have taken a look at #10 #42 #19. However, just using this code
<div [ng2-highcharts]="chartData"></div>
and replacing the whole
charData
object properties triggers complete rerender as expected.Accessing the reference is not available by default so there is no easy way to actually just update the data. The setInterval example you mentioned also replaces the whole object. Could an init event be added (similar as for example angular-highcharts) and #10 workaround, so that this would be as easy as:
without manually having to write custom code to trigger this init?
Thanks