Posted 25 August 2020, 3:12 am EST - Updated 3 October 2022, 3:44 pm EST
I’m trying to change the column width to only fit one character using css but it leaves a blank space between the columns. Please see attachment. Is there a way to give rid of it?
Template:
<wj-flex-grid-column *ngFor=“let col of columns”
[binding]=“col[‘binding’]”
[wordWrap]=“true”>
<ng-template wjFlexGridCellTemplate class=“header” [cellType]=“‘ColumnHeader’” let-cell=“cell”>
{{cell.col.index + 1}}
CSS:
.wj-cell {
padding: 0;
border: none !important;
width: 8px !important;
text-align: center;
}