Here is an example: (In Filter Menu option inside it. Follow second-last example)
https://www.telerik.com/kendo-angular-ui/components/grid/filtering/reusable-filter/
Small change in it. There 'multicheck-filter.component.ts' file will give you this error:
Property 'value' does not exist on type 'FilterDescriptor | CompositeFilterDescriptor'.
Property 'value' does not exist on type 'CompositeFilterDescriptor'.
To resolve it, you need to replace below given code inside ngAfterViewInit()
this.value = this.currentFilter.filters.map(FilterDescriptor => f.value);
With below given code.
this.value = this.currentFilter.filters.map((f:FilterDescriptor) => f.value);
and also import 'FilterDescriptor' from '@progress/kendo-data-query'.