gpt4 book ai didi

reactjs - Material-UI DataGrid 基于文本内容动态行高

转载 作者:行者123 更新时间:2023-12-04 11:58:41 26 4
gpt4 key购买 nike

使用 DataGrid 时,我无法弄清楚如何使行高可变,以便行高根据单元格中文本内容的长度动态变化。
我想我需要添加 renderCell在具有较长文本的列上,并使用 <Typography>组件,但我不知道使用什么参数来设置它的样式。
有很多关于如何处理截断、省略号等的文档,但我似乎无法弄清楚我需要根据内容申请可变行高。

最佳答案

const StyledDataGrid = withStyles({
root: {
'& .MuiDataGrid-renderingZone': {
maxHeight: 'none !important',
},
'& .MuiDataGrid-cell': {
lineHeight: 'unset !important',
maxHeight: 'none !important',
whiteSpace: 'normal',
},
'& .MuiDataGrid-row': {
maxHeight: 'none !important',
},
},
})(DataGrid);
this以演示为例。

关于reactjs - Material-UI DataGrid 基于文本内容动态行高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66442488/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com