Felxgrid的行为是和标准的div类似。
可以通过css来设置高度。
比如代码:
- .grid {
- height: auto;
- max-height: 300px;
- }
复制代码
如果是设置行高,可以通过行下的defaultSize属性设置。
- // set the height of rows in the scrollable area
- flex.rows.defaultSize = 34;
- // set the height of rows in the column header area
- flex.columnHeaders.rows.defaultSize = 40;
复制代码 |