ecomfe / echarts-gl

Extension pack for Apache ECharts, providing globe visualization and 3D plots.
BSD 3-Clause "New" or "Revised" License
2.59k stars 844 forks source link

Memory leak when enable `grid3D.postEffect` #487

Open troy351 opened 1 year ago

troy351 commented 1 year ago
troy351 commented 1 year ago

Possible reproduce code

let myChart;

setInterval(() => {
  if (myChart) myChart.dispose();

  myChart = echarts.init(dom, null, {
    renderer: "canvas",
  });

  myChart.setOption(option);
}, 100);
troy351 commented 1 year ago

@pissang