Posted 1 December 2022, 12:56 am EST
- Updated 1 December 2022, 4:46 am EST
Hi,
In the provided sample, height property is set to ‘4.69vh !important’ which is causing this issue fixing the height of the cell, you can use min-height property instead of ‘height’ to avoid this issue. Please refer to the following CSS configuration (in style.css) -
.wj-flexgrid .wj-cell {
background-color: #e7fce4;
border: 1px solid #c3e7a7;
min-height: 4.69vh !important;
/* padding-top: 0.6em; */
}
You can refer to the following updated sample for the same - https://stackblitz.com/edit/angular-dckzwc?file=src/app/app.component.ts
Regards