Mehmet

Results 2 comments of Mehmet

Hi, is not there anyway to pass notMerge=false with updateOptions? Thanks ``` this.updateOptions = { series: [{ data: this.data }] }; ```

I have just find out that using echartsInsance, we can do that. ``` onChartInit(ec) { this.echartsInstance = ec; } ``` and later in order to update: ``` this.echartsInstance.setOption(this.csvGraphOptions, false); ```...