<div class="kt-portlet__body">
<div class="row mb-4">
<div class="col-xl-6">
<table class="table table-striped table-bordered table-sm row-border hover" datatable [dtOptions]="dtOptions">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Website</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let group of data">
<td>{{group.name}}</td>
<td>{{group.email}}</td>
<td>{{group.website}}</td>
</tr>
</tbody>
</table>
</div>
<div class="col-xl-6">
<div id="map" class="clsleafletmap">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
выше - код html в angular 8. Я перешел по ссылке ниже для привязки данных в angular 8 https://therichpost.com/angular-8-datatable-working-example/ Но я не нашел какой-либо детали для применения фильтр на datatable. Помогите мне применить фильтр на datatable.