AG-Grid autosizeAllColumns() 使列比必要的宽

发布于 2025-01-11 00:09:26 字数 238 浏览 0 评论 0原文

我正在使用带有大量列的 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:

This is what it looks like

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

楠木可依 2025-01-18 00:09:26

autoSizeAllColumns 具有以下内容 界面

autoSizeAllColumns = (skipHeader?: boolean) => void;

我建议调用 autoSizeAllColumns(true) 并查看是否有所改进,因为网格现在将仅根据内容调整列的大小,并且将忽略标题。

如果这没有帮助,那么我建议考虑使用 列 Flex

autoSizeAllColumns has the following interface:

autoSizeAllColumns = (skipHeader?: boolean) => void;

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文