Hi,
There is a certain are in the header that is coming because I have used GroupBy in xamdatagrid.
How can I hide that area
I have marked that area in red on left hand side of the header
I have tried the following
<igDP:XamDataGrid.FieldLayoutSettings> <igDP:FieldLayoutSettings RecordSelectorLocation="None" /></igDP:XamDataGrid.FieldLayoutSettings>
Thanks
Sumeet
Hi Matt,
The following worked for me
<
Style TargetType="{x:Type igDP:DataRecordPresenter}"
>
Setter Property="HeaderAreaBackground" Value="{StaticResource backgroundDarkGrayBrush}"
/>
</
Style>
Hi