We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当在当前配置下,使用鼠标滚轮进行缩放后,鼠标移动到数据点上tooltip不会显示。
在鼠标滚轮进行放大缩小后,鼠标移动到数据点上可显示tooltip
option = { title: { text: '大规模散点图' }, tooltip : { trigger: 'item', showDelay : 0 }, legend: { data:['sin','cos'] }, dataZoom : [{ type : 'inside', xAxisIndex : 0, filterMode : 'empty' }, { type : 'inside', yAxisIndex : 0, filterMode : 'empty' }], toolbox: { show : true, feature : { mark : {show: true}, dataZoom : {show: true}, dataView : {show: true, readOnly: false}, restore : {show: true}, saveAsImage : {show: true} } }, xAxis : [ { type : 'value', scale:true } ], yAxis : [ { type : 'value', scale:true } ], series : [ { name:'sin', type:'scatter', large: true, symbolSize: 3, data: (function () { var d = []; var len = 10000; var x = 0; while (len--) { x = (Math.random() * 10).toFixed(3) - 0; d.push([ x, //Math.random() * 10 (Math.sin(x) - x * (len % 2 ? 0.1 : -0.1) * Math.random()).toFixed(3) - 0 ]); } //console.log(d) return d; })() }, { name:'cos', type:'scatter', large: true, symbolSize: 2, data: (function () { var d = []; var len = 20000; var x = 0; while (len--) { x = (Math.random() * 10).toFixed(3) - 0; d.push([ x, //Math.random() * 10 (Math.cos(x) - x * (len % 2 ? 0.1 : -0.1) * Math.random()).toFixed(3) - 0 ]); } //console.log(d) return d; })() } ] };
The text was updated successfully, but these errors were encountered:
eae4fd5
No branches or pull requests
One-line summary [问题简述]
当在当前配置下,使用鼠标滚轮进行缩放后,鼠标移动到数据点上tooltip不会显示。
Version & Environment [版本及环境]
Expected behaviour [期望结果]
在鼠标滚轮进行放大缩小后,鼠标移动到数据点上可显示tooltip
ECharts option [ECharts配置项]
Other comments [其他信息]
The text was updated successfully, but these errors were encountered: