4.8.0
https://github.com/CarterLi/echarts-bug
The chart should work as normal, tooltip should be shown
The chart renders white blank
Originally found when testing my repo: https://github.com/CarterLi/echarts-with-offscreencanvas
I tested several chart types and found only line chart worked as expected. I have been trying to debug this issue for 2 days and only found the issue happens here:
_startLoop: function () {
var self = this;
this._running = true;
function step() {
if (self._running) {
requestAnimationFrame(step);
!self._paused && self._update();
}
}
requestAnimationFrame(step);
},
Of course it was not true, so I gave up.
The issue is rather important to our company, please help
Hi! We've received your issue and please be patient to get responded. 🎉
The average response time is expected to be within one day for weekdays.
In the meanwhile, please make sure that you have posted enough image to demo your request. You may also check out the API and chart option to get the answer.
If you don't get helped for a long time (over a week) or have an urgent question to ask, you may also send an email to [email protected]. Please attach the issue link if it's a technical questions.
If you are interested in the project, you may also subscribe our mail list.
Have a nice day! 🍵
Related issue: https://github.com/apache/incubator-echarts/issues/9232
This issue is the only blocking issue that enabling echarts working in web worker, because in a worker echarts can only be run in single canvas mode.
@CarterLi
option = {
// Set this to avoid the issue.
hoverLayerThreshold: Infinity,
...
};
And echarts needs to fix that:
test/**.It works! Thanks @100pah
Echarts in worker demo can be found here: https://carterli.github.io/echarts-with-offscreencanvas/