I have created a simple data table with approx. 20 columns and 50 rows with something like this:
<ngx-datatable
class="bootstrap"
[rows]="filteredlist"
[reorderable]="reorderable"
[headerHeight]="50"
[rowHeight]="38"
[selectionType]="'single'"
[scrollbarV]="true"
[scrollbarH]="true"
style="max-height: 60vh"
>
<ngx-datatable-column name="#" width="50">
<ng-template let-rowIndex="rowIndex" let-row="row" ngx-datatable-cell-template>
{{ rowIndex + 1}}
</ng-template>
</ngx-datatable-column>
...
</ngx-datatable>
What I'm wondering now is the slow performance. When I scroll horizontal the header moves with a delay. Furthermore when I use some [frozenLeft]="true"
it flickers a lot.
Is there something wrong with my table or are there any performance hints available?