我该如何告诉 AgGrid 不要缩短我的列标题?默认情况下,我希望能够在网格加载时看到完整的列标题,并且不必调整它们的大小。
P粉4690907532023-09-14 11:00:25
您可以使用minWidth a> 指定每列的最小宽度。您还可以设置 suppressSizeToFit设置为 true 以阻止 AgGrid 在调用 api.sizeColumnsToFit(params)。
// for specific column const columnDefs = [ { field: 'athlete', width: 150, suppressSizeToFit: true }, { field: 'age', width: 50, minWidth: 50 }, { colId: 'country', field: 'country', minWidth: 300 }, { field: 'year', width: 90 }, ]; // for all columns const defaultColDef = { suppressSizeToFit: true }