1. Apply filtering to the DataGrid using the distinct values in the Filtering UI,
2. Clear the filter descriptors from external UI.
3. Open the same Filtering UI
Actual: the distinct values in the Filtering UI are still checked.
Expected: The distinct values should be cleared.
Hi,
I wanted to request a feature for the .net maui datagrid. I would like if it were possible to merge cells across rows when they have the same value. For example, I use the datagrid to display events and it would be so much more readable if all the events that were on the same day (date) showed the date cell just once merged across a few rows rather than duplicating it multiple times.
Thanks
I want to have the option to add a ToolTip for column,
<telerik:DataGridTextColumn IsFrozen="True" HeaderText="BirthDay"
DataMemberBinding="{Binding BirthDay}"
ToolTipProperties.Text="{Binding BirthDay}" />
Scenario: I want to bind two properties to a column, So I created Text column and set DataMemberBinding property to binding these two properties,
<telerik:DataGridTextColumn HeaderText="Country">
<telerik:DataGridTextColumn.DataMemberBinding>
<MultiBinding Converter="{StaticResource MultiConverter}">
<Binding Path="Country" />
<Binding Path="City" />
</MultiBinding>
</telerik:DataGridTextColumn.
When setting MinimunHeightRequest to the DataGrid control, the height is not respected.
If you have minimum and maximum height request set, maximum will be applied instead.
Add FontAutoScalingEnabled property to the header, textcell, groupheader, where font size can be set.
for the Label there is such property https://learn.microsoft.com/en-us/dotnet/maui/user-interface/fonts?view=net-maui-8.0#disable-font-auto-scaling that allows you to disable the text scaling
It seems that the default fonts in the RadDataGrid do not support some languages, for example this text "이름" cannot be displayed in Android and WinUI. Rectangles are rendered instead of the correct symbols.
Note that a maui Label can properly display the text.