Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
XamDataGrid hierarchical layout question
posted

Hi Team,

We have a very simple problem:

With a Sample data model like below

public class SampleData
{
public string Name { get; set; }
public string Category { get; set; }
public List<SampleData> ChildData { get; set; }
public string LabelProperty { get; set; }
}

We get a Hieraachical grid like the picture attached.

Is there any easy way to not have a header in the expanded level, and have the columns aligned and in sync? We are looking for having a multi level hierarchy and this repeated header and column misalignment is really becoming a show stopper.

Thanks