You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
This is a stange thing. If I enable RowHeaders and not all columns fit into the space (horizontal scroll viewer) the last Cell of each row is clipped or hidden by a rectangle (see Screenshot)
To Reproduce
Steps to reproduce the behavior:
Go to ControlCatalog ► DataGridPage
change the XAML like below
RowHeaderWidth="40" is important
No column width is * is important
resize the columns until the horizontal scrollviewer is visible
Scroll to the right end
See the las cell is clipped or hidden by a rectangle
Code
<DataGridName="dataGrid1"Margin="12"CanUserResizeColumns="True"CanUserReorderColumns="True"CanUserSortColumns="True"HeadersVisibility="All"RowBackground="#1000"RowHeaderWidth="40"AlternatingRowBackground="#1fff">
<DataGrid.Columns>
<!-- Using HeaderTemplate -->
<DataGridTextColumnHeader="Country"HeaderTemplate="{StaticResource Demo.DataTemplates.CountryHeader}"Binding="{Binding Name}" />
<!-- CompiledBinding example of usage. -->
<DataGridTextColumnHeader="Region"Binding="{CompiledBinding Region}"x:DataType="local:Country" />
<DataGridTextColumnHeader="Population"Binding="{Binding Population}" />
<DataGridTextColumnHeader="Area"Binding="{Binding Area}" />
<DataGridTextColumnHeader="GDP"Binding="{Binding GDP}"CellStyleClasses="gdp"MinWidth="200"IsVisible="{Binding #ShowGDP.IsChecked}"/>
</DataGrid.Columns>
</DataGrid>
Expected behavior
No cell is clipped
Screenshots
Desktop (please complete the following information):
OS: Windows 10
Version latest master, 0.10.15
Additional context
I haven't find the root cause yet. Any hint is welcome.
The text was updated successfully, but these errors were encountered:
Update: I've investigated this issue further. And I've noticed, that if you are using groups the group header will overlay the row headers. Is this maybe related?
I've still not found a solution for this issue unfortunately.
Describe the bug
This is a stange thing. If I enable
RowHeaders
and not all columns fit into the space (horizontal scroll viewer) the last Cell of each row is clipped or hidden by a rectangle (see Screenshot)To Reproduce
Steps to reproduce the behavior:
RowHeaderWidth="40"
is important*
is importantCode
Expected behavior
No cell is clipped
Screenshots
Desktop (please complete the following information):
Additional context
I haven't find the root cause yet. Any hint is welcome.
The text was updated successfully, but these errors were encountered: