DatePicker settings in the RadzenDataGridColumn

Hi
In my RadzenDataGrid I have a column of type DateTime.
When I set the Filterable property to true I get a calendar icon. If I click it a DateTime picker appears.
image

How can I change this so thet the datepicker shows the date only, and not the time?

ps,
My gridcolumn is now defined like this:

                    <RadzenDataGridColumn TItem="ActivityViewModel"
                                          Property="CreationDate"
                                          Width="55px"
                                          FormatString="{0:dd-MM-yyyy}"
                                          Sortable="true"
                                          Filterable="true">
                        <HeaderTemplate>Date</HeaderTemplate>
                    </RadzenDataGridColumn>

You can create custom column similar to this demo: Blazor DataGrid Component - Filter API | Free UI Components by Radzen