Filter and Sort button positions in RadzenDataGrid

Is there a way to have the Filter and Sort buttons render below the title in the Header row?
I can multi line the header if its longer by using

            <RadzenDataGridColumn Property="@nameof(CurrentRuleRow.RuleType)" Sortable="true" Filterable="true" Width="5%" Title="Rule Type" >
                <HeaderTemplate>
                    Rule <br /> Type
                </HeaderTemplate>
            </RadzenDataGridColumn>

But the icons for render and sort are still on the right hand side, id like to render them below the title so I can have extra space for the title.

image

Maybe this type of filtering will work for you:

Thanks for the reply, yes I have played with those options, but I have a combination of filter types, and i like the functionality of the icon in the caption, but wanted to see if it could be rendered below the title purely for space reasons.