mythFrist opened a new issue #14558: URL: https://github.com/apache/echarts/issues/14558
### Version 5.0.2 ### Steps to reproduce 使用以下option 填入https://echarts.apache.org/examples/zh/editor.html?c=scatter-effect 在右侧图表中进行datazoom操作(鼠标滚轮),会发现scatterEffect的点在绘图区域外也显示。 ```js option = { xAxis: { scale: true }, yAxis: { scale: true }, grid: { show: true, height: "60%", top: 200, borderColor: 'red' }, dataZoom: [{ type: 'inside', filterMode: 'none', }, { filterMode: 'none', type: 'slider', showDataShadow: false, handleIcon: 'path://M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4v1.3h1.3v-1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7V23h6.6V24.4z M13.3,19.6H6.7v-1.4h6.6V19.6z', handleSize: '80%' }, { filterMode: 'none', type: 'inside', orient: 'vertical' }, { filterMode: 'none', type: 'slider', orient: 'vertical', showDataShadow: false, handleIcon: 'path://M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4v1.3h1.3v-1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7V23h6.6V24.4z M13.3,19.6H6.7v-1.4h6.6V19.6z', handleSize: '80%' }], series: [{ type: 'effectScatter', symbolSize: 20, data: [ [172.7, 105.2], [153.4, 42] ] }, { type: 'scatter', data: [[161.2, 51.6], [167.5, 59.0], [159.5, 49.2], [157.0, 63.0], [155.8, 53.6], [170.0, 59.0], [159.1, 47.6], [166.0, 69.8], [176.2, 66.8], [160.2, 75.2], [170.2, 59.1], [172.7, 70.5], [165.1, 60.9], [170.2, 63.6] ], }] }; ``` ### What is expected? scatterEffect的点在绘图区域外不显示 ### What is actually happening? scatterEffect的点在绘图区域外也显示 <!-- 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]
