I want to know how to remove the vertical line between Grid columns in GridControl
, what should i do?
Try to set the ShowVerticalLines
property of the TableView
to false
:
<dxg:GridControl ...>
<dxg:GridControl.View>
<dxg:TableView ShowVerticalLines="False" />
</dxg:GridControl.View>
</dxg:GridControl>