Version

Please note that this control has been retired and is now obsolete to the XamDataGrid control, and as such, we recommend migrating to that control. It will not be receiving any new features, bug fixes, or support going forward. For help or questions on migrating your codebase to the XamDataGrid, please contact support.

Filler Column

A FillerColumn is a column that fills any remaining space in the xamGrid control. When you set a specific width on xamGrid, all the columns are rendered based on their ColumnWidth property and then the additional space that is rendered is the filler column.

You can modify styling properties of the filler column by setting the following FillerColumnSettings object’s properties:

The filler column will always be displayed if there is any left over horizontal width. You can not explicitly turn it off, however there are ways you can ensure it does not display. For example:

  • Set the columns to have a star width, that way the columns will take up any extra space in the grid.

  • Change the width of your grid to be smaller.

  • Give your grid infinity width by putting it in a container such as a ScrollViewer with HorizontalScrolling set to auto. However, if you do this, Virtualization will be turned off.

xamGrid Filler Column 01.png