echarts icon indicating copy to clipboard operation
echarts copied to clipboard

[Bug] The elements selected during the scaling of ScatterChart under large data volumes do not disappear

Open shiboqingning opened this issue 3 years ago • 4 comments

Version

5.3

Link to Minimal Reproduction

No response

Steps to Reproduce

1.ScatterChart of big data 2.Place the mouse over an element to scale the canvas image image

Current Behavior

Selected elements do not disappear during scaling

Expected Behavior

Hide the element selected at the beginning of the mouse during zooming

Environment

- OS: Windows 10
- Browser:Chrome 100.0.4896.127
- Framework: JS

Any additional comments?

No response

shiboqingning avatar May 13 '22 10:05 shiboqingning

This doesn't look like a bug to me. Please create a demo if you think so.

Ovilia avatar May 16 '22 02:05 Ovilia

@shiboqingning Please provide a demo for the issue either with Official Editor, CodePen, CodeSandbox or JSFiddle.

echarts-bot[bot] avatar May 16 '22 02:05 echarts-bot[bot]

The renderings are as follows: example

See The Following Code:

var data = []; for (i = 0; i < 100; i++) { for (j = 0; j < 100; j++) { if(i == 50 && j == 50){ data.push([i,j,20]) }else{ data.push([i,j,5]); } } }

option = { xAxis : {}, yAxis : {}, dataZoom: [ { id: 'dataZoomX', type: 'inside', xAxisIndex: [0], filterMode: 'filter' }, { id: 'dataZoomY', type: 'inside', yAxisIndex: [0], filterMode: 'filter' } ], tooltip:{}, series: [ { symbolSize: function (val) { return val[2]; }, data: data, type: 'scatter' } ] };

shiboqingning avatar May 16 '22 04:05 shiboqingning

This issue has been automatically marked as stale because it did not have recent activity. It will be closed in 7 days if no further activity occurs. If you wish not to mark it as stale, please leave a comment in this issue.

github-actions[bot] avatar May 15 '24 21:05 github-actions[bot]

This issue has been automatically closed because it did not have recent activity. If this remains to be a problem with the latest version of Apache ECharts, please open a new issue and link this to it. Thanks!

github-actions[bot] avatar May 22 '24 21:05 github-actions[bot]