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
160
Drill down records - hidding/removing column headers in drill down rows
posted

Hello,

I Have a requriemnt to hide headers in drill down records. My data model is:

 public class Data   

{       

        public string name { get; set; }
        public int negative { get; set; }
        public int positive  { get; set; }
        public List<Data> drills { get; set; }
    }

And current layout looks as follows:

 

 

I would like to ridd off headers marked in red rectangles.  Could you please advice?

Thank you!