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
当给options设置了dataZoom后,connectNulls默认值false被修改成了true,数据中的null两端的点被连接起来了
设置了dataZoom后,null值两端的点依然不连接在一起
option = { tooltip: { trigger: 'axis' }, legend: { data:['Step Start', 'Step Middle', 'Step End'] }, toolbox: { feature: { saveAsImage: {}, //dataZoom: { } //当增加了这一句后,data中的null就被连起来了 } }, xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] }, yAxis: { type: 'value' }, series: [ { name:'Step Start', type:'line', step: 'start', data:[120, 132, null, 134, 90, 230, 210] }, { name:'Step Middle', type:'line', step: 'middle', data:[220, 282, 201, 234, null, 430, 410] }, { name:'Step End', type:'line', step: 'end', data:[450, 432, 401, 454, 590, null, 510] } ] }
jsbin: http://jsbin.com/telimokula/edit?html,js,output
The text was updated successfully, but these errors were encountered:
d4d848f
No branches or pull requests
One-line summary [问题简述]
当给options设置了dataZoom后,connectNulls默认值false被修改成了true,数据中的null两端的点被连接起来了
Version & Environment [版本及环境]
Expected behaviour [期望结果]
设置了dataZoom后,null值两端的点依然不连接在一起
ECharts option [ECharts配置项]
Other comments [其他信息]
jsbin: http://jsbin.com/telimokula/edit?html,js,output
The text was updated successfully, but these errors were encountered: