Ovilia commented on issue #6735: 热力图动画关不掉 URL: https://github.com/apache/incubator-echarts/issues/6735#issuecomment-423970234 引起这个问题的主要原因是因为数据量较大的时候会默认开启渐进式渲染,而不是“动画”。 热力图默认会在数据量大于 3000 的情况下开启渐进式渲染,这个值可以通过 `series.progressiveThreshold` 修改;每次渲染 400 个,这个值可以通过 `series.progressive` 修改。之前文档漏了这部分的说明,已在上面的 commit 中修复。 因此,对于这个例子而言,如果不希望出现所谓的“动画”,可以通过将 `series.progressiveThreshold` 设大一点,比如例子中数据有 20000 个点,如果 series.progressiveThreshold 大于这个值将会一下子渲染出结果了。但是实际上会由于数据量较大,有几秒的白屏时间,体验上有些损失。出于用户体验的考虑,建议保留渐进式渲染的结果。
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
