100pah opened a new issue #14222:
URL: https://github.com/apache/echarts/issues/14222
### Version
5.0.1
### Steps to reproduce
```js
var option = {
xAxis: {
max: 200
},
yAxis: {
min: 0,
max: 200
},
series: {
type: 'custom',
renderItem: function (params, api) {
return {
type: 'circle',
// Note, this probably cause the problem.
// if set as shape.cx: 100, shape.cy: 100,
// everything OK.
x: 100,
y: 100,
shape: {
cx: 0, cy: 0, r: 50
},
silent: true,
style: {
fill: 'organge'
}
}
},
data: [[1]]
}
};
```
Note: 4.9.0 has the same problem.
### What is expected?
No flicker.
### What is actually happening?
Keep flicker when mouse hovering and move on the circle.
<!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
<!-- This issue is in English. DO NOT REMOVE -->
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]