How to disable or hide the header of xamDataGrid?
I think this is easy but up to now I can not find good answer. I even try to set the LabelHeight to 0 to hide it but it still display something on the top.
Someone can help me?
Hi Phoebelight,
In Xaml:
<igDP:FieldLayoutSettings LabelLocation="Hidden"></igDP:FieldLayoutSettings>
In .cs
this.myGrid.FieldLayoutSettings.LabelLocation = Infragistics.Windows.DataPresenter.LabelLocation.Hidden;
Regards,
Ramesh.P