function clearTimer()

in components/helper/sandbox.ts [68:74]


  function clearTimer(id) {
    const animator = animatorIdMap[id]
    if (animator) {
      chartInstance.getZr().animation.removeAnimator(animator)
      delete animatorIdMap[id]
    }
  }