Esteban Gehring

Results 171 comments of Esteban Gehring

@gnardecky any idea how to solve this? we even have ```typescript ngOnDestroy() { this._onDestroy.next(); this._onDestroy.complete(); if (this._currentChart) { this.zone.runOutsideAngular(() => { zingchart.exec(this._currentChart.id, 'destroy'); }); } } ``` but the error...

Here is a demo that demonstates the issue: https://codepen.io/macjohnny-zh/pen/LJVooJ It seems that the `resize` event fires and re-renders the chart even after it was destroyed. The problem also occurs if...

the settings ``` zingchart.DEV.RESIZESPEED = 10; zingchart.DEV.DEBOUNCESPEED = 10; ``` seem to resolve the issue *in some cases, but not always*.

The issue seems to be resolved with zingchart version `2.8.1` However, with `null` values in the `values` array it was necessary for us to set ```javascript zingchart.DEV.GC = 0; ```...

@ctaity could you try `[email protected]` and close this issue if it is resolved?

@skilltik what is the error message you get?

@skilltik the `Uncaught TypeError: Cannot read property 'A' of null` error occurs with zingchart `2.8.1`, but it can be avoided with `zingchart.DEV.GC = 0`. With Zingchart `2.7.0`, the `zingchart.DEV.GC =...

version `2.8.2` seems to resolve the issue without the need of any further setting. so I think this issue should be closed.