AG-Grid autosizeAllColumns() 使列比必要的宽
我正在使用带有大量列的 ag-gird 表。为了仍然显示每列的全部内容,我想在 columnApi 上使用 autoSizeAllColumns() 。
我可以看到专栏的全部内容,但是这种设置使我的专栏比必要的更宽。例如,“Typ”列仅包含 1 或 2。宽度仍然太高:
I am using ag-gird table with plenty columns. For still displaying the whole content of each column I want to use autoSizeAllColumns() on the columnApi.
I can see the whole content of a column, however this setup makes my columns even wider than necessary. For example the column "Typ" only consists of 1 or 2. Still the width is far to high:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
autoSizeAllColumns
具有以下内容 界面:我建议调用
autoSizeAllColumns(true)
并查看是否有所改进,因为网格现在将仅根据内容调整列的大小,并且将忽略标题。如果这没有帮助,那么我建议考虑使用 列 Flex。
autoSizeAllColumns
has the following interface:I'd recommend calling
autoSizeAllColumns(true)
and see if that makes an improvement, as the grid will now size the column based only on the content, and will ignore the header.If that does not help, then I'd recommend looking into using Column Flex.