How would I go about displaying the column headers at the bottom of the column?
Greg
Hi,
I don't think the xamGrid provides this feature. Have you tried using the footer row instead?
HTH
We tried this and unless I am mistaken the footer row is one big box. The problem being that if you want to show column headers there you have to somehow make a grid inside this box with columns that size dynamically exactly the same as the grid columns otherwise the headers won't match up with the grid columns as the user resizes the screen.
The FooterCell would share the size of column, with borders like the header.
<ig:XamGrid x:Name="grid" FooterVisibility="Visible"> <ig:XamGrid.Columns> <ig:TextColumn Key="Name" FooterText="Test"></ig:TextColumn> </ig:XamGrid.Columns> </ig:XamGrid>
Works great, thank you!