Ask Your Question
0

How can I eliminate the column dividers in Telerik RadDataGrid for Xamarin?

asked 2023-05-05 04:19:39 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-05-05 04:46:02 +0000

huitzilopochtli gravatar image

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.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-05-05 04:19:39 +0000

Seen: 13 times

Last updated: May 05 '23