Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用这个来尝试适应列和行宽如何在 ag-grid 中动态设置行高和列宽(请在打字稿中提供 git hub 代码)
我假设您想根据行的内容设置行高。
gridOptions.getRowHeight = rowHeightFn
function rowHeightFn(params) { var result = 46; if (params.data.someKey === 2) { result = 2; } return result }