Ask Your Question

Revision history [back]

To eliminate the column dividers in Telerik RadDataGrid for Xamarin, you can set the ColumnBorderWidth property to 0. Here's an example:

<telerikGrid:RadDataGrid x:Name="dataGrid">
    <telerikGrid:RadDataGrid.GridStyle>
        <telerikGrid:DataGridStyle ColumnBorderWidth="0"/>
    </telerikGrid:RadDataGrid.GridStyle>
    ...
</telerikGrid:RadDataGrid>

This will remove the dividers between the columns.