We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
为什么不直接调用 stopAutoShow 呢?
function clearLoop() { if (timeTicket) { clearInterval(timeTicket); timeTicket = 0; } chart.off("mousemove", stopAutoShow); zRender.off("mousemove", zRenderMouseMove); zRender.off("globalout", zRenderGlobalOut); } // 改成 function clearLoop() { stopAutoShow(); chart.off("mousemove", stopAutoShow); zRender.off("mousemove", zRenderMouseMove); zRender.off("globalout", zRenderGlobalOut); }
The text was updated successfully, but these errors were encountered:
如果是觉得饼图默认情况就是有一个高亮的话, 那在数据更新需要重新循环的情况时,应该怎么办呢?
Sorry, something went wrong.
可以改成这样的。
No branches or pull requests
为什么不直接调用 stopAutoShow 呢?
The text was updated successfully, but these errors were encountered: