Posted 19 March 2021, 7:30 am EST
Hi,
I have wijmo flexsheet. I am using Angular 6 for UI. The following code is present in my Html.
<wj-flex-sheet #flex (dblclick)=“onClick($event)” (initialized)=“flexInitialized(flex)”>
<wj-sheet [name]=“‘Data’” [itemsSource]=“reportData”>
When total record is 2000 and one of my columns suppose address column contains 1900 and more null values .only 100 rows contain address value. In that case flexsheet not showing the column in UI.
I think there is a default feature like when all the values are null that column should not be visible. but in my case some of the records have values.
I just changed all the null values into some string value then it is visible.
how to resolve this issue?