hi,
I am implementing xamDataGrid Theme="Onyx". but xamDatagrid doesn't has grid record horizontal and vertical line. Clients requirement is to show that theme only and having Grid line also visible.
please help me how can i override the theme so that it has grid Line visible.
thanks in advance
Amit
Amit,
You can try with the following styles:
//Set vertical lines<Style TargetType="{x:Type igDP:CellValuePresenter}"> <Setter Property="BorderBrush" Value="Red"/></Style>
//Set horizontal lines<Style TargetType="{x:Type igDP:DataRecordCellArea}"> <Setter Property="BorderBrush" Value="Red"/></Style>
Hope this helps
Vlad