How to change row height for GreedTreeControl?

Hi
How to change row height in GridTreeControl?
When I use ColorPicker in CellEditTemplate it has larger height than row height.

 

 

 

 


3 Replies

SR Sivakumar R Syncfusion Team December 21, 2015 04:24 PM UTC

Hi Alex,

You can change the row height of GridTreeControl using the below code snippet,

this.gridtreecontrol.ModelLoaded += new EventHandler(gridtreecontrol_ModelLoaded);

void gridtreecontrol_ModelLoaded(object sender, EventArgs e)
{           

this.gridtreecontrol.Model.RowHeights.DefaultLineSize = 55;
}


Thanks,
Sivakumar


AL Alex December 22, 2015 06:56 AM UTC

Thank you for your fast reply.
Regards,
Alex


JG Jai Ganesh S Syncfusion Team December 23, 2015 04:07 AM UTC

Hi Alex,


Thank you for the update.


Please let us know if you need further assistance on this.


Regards,

Jai Ganesh S


Loader.
Up arrow icon