标签: ag-grid ag-grid-react
有没有办法为浮动行设置样式,比如floatCellStyle?我看到有一个floatingCellRenderer,但没有专门针对样式。
答案 0 :(得分:0)
嗯,有点晚了,但这是一个答案...... 您可以按照getRowStyle将样式设置为gridOptions
getRowStyle
gridOptions
getRowStyle: function(params) { if (params.node.floating) { return {'font-weight': 'bold'} } }
来源:ag-Grid Documentation