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
数据量比较多的情况下,点击数据视图,数据显示不全,建议数据视图表格DIV 添加滚动条
1.点击数据视图
源码echarts.js 第 60935行 viewMain.style.cssText = 'display:block;width:100%;overflow:hidden;'; 修改为: viewMain.style.cssText = 'display:block;width:100%;overflow:auto;';
viewMain.style.cssText = 'display:block;width:100%;overflow:hidden;';
viewMain.style.cssText = 'display:block;width:100%;overflow:auto;';
option = { }
The text was updated successfully, but these errors were encountered:
没有滚动条了
Sorry, something went wrong.
我也遇到了同样问题,这么久居然还在…… 默认的数据视图使用了textarea自带滚动条,所以父节点div禁用了滚动条。但是现在我想用table展现数据时,却发现超出视域的内容没法显示了。虽然这个功能用得不多,但真碰上了还是很纠结啊,不想在源码上改。
1655379
已解决,套一层div就好了 <div style="width: 100%;height: 100%;overflow: auto"></div>
<div style="width: 100%;height: 100%;overflow: auto"></div>
No branches or pull requests
问题简述 (One-line summary)
数据量比较多的情况下,点击数据视图,数据显示不全,建议数据视图表格DIV 添加滚动条
版本及环境 (Version & Environment)
重现步骤 (Steps to reproduce)
1.点击数据视图
期望结果 (Expected behaviour)
源码echarts.js 第 60935行
viewMain.style.cssText = 'display:block;width:100%;overflow:hidden;';
修改为:
viewMain.style.cssText = 'display:block;width:100%;overflow:auto;';
可能哪里有问题 (What went wrong)
ECharts配置项 (ECharts option)
其他信息 (Other comments)
The text was updated successfully, but these errors were encountered: