Hi All,
I'm using a xamdatagrid to show a hierarchy data it's working fine but I dont want to show the column names (header label) for the children grids .
I found the solution add this event handler for the event FieldLayoutInitialized :
private void dataGrid_businessStrategies_FieldLayoutInitialized(object sender, Infragistics.Windows.DataPresenter.Events.FieldLayoutInitializedEventArgs e)
{
if (!e.FieldLayout.IsDefault)
e.FieldLayout.Settings.LabelLocation = Infragistics.Windows.DataPresenter.LabelLocation.Hidden;
}