html(I have Filter button with options in order to the listing rows. )
<button mat-raised-button [matMenuTriggerFor]="filter">Filter</button>
<mat-menu #filter="matMenu" yPosition="below" xPosition="before">
<ng-template matMenuContent>
<div class="row">
<div class="col-6">
<section class="example-section" (click)="$event.stopPropagation();">
<mat-checkbox (click)=" checkBoxFilter($event.target.value)"class="example-margin" >Active</mat-checkbox>
<mat-checkbox (click)=" checkBoxFilter($event.target.value)"class="example-margin" >Expired</mat-checkbox>
<mat-checkbox (click)=" checkBoxFilter($event.target.value)"class="example-margin" >Grace</mat-checkbox>
<mat-checkbox (click)=" checkBoxFilter($event.target.value)"class="example-margin" >Trial</mat-checkbox>
<mat-checkbox (click)=" checkBoxFilter($event.target.value)"class="example-margin" >Invited</mat-checkbox>
<mat-checkbox (click)=" checkBoxFilter($event.target.value)"class="example-margin" >InActive</mat-checkbox>
<mat-checkbox (click)=" checkBoxFilter($event.target.value)"class="example-margin" >A-Z</mat-checkbox>
<mat-checkbox (click)=" checkBoxFilter($event.target.value)"class="example-margin" >Expiry Date</mat-checkbox>
</section>
</div>
</div>
</ng-template>
</mat-menu>
component.ts(how to filter the value using this method??)
checkBoxFilter(event){
}