How to set height of row in GridTreeControl

Hello
I need to set height of row in GridTreeControl.
Thanks


1 Reply

JS Jayapradha S Syncfusion Team April 15, 2016 12:45 PM UTC

Hi Lukasz,

Thank you for contacting Syncfusion Support.

You can set the row height for GridTreeControl using the below code snippet,

Code Example:
this.treeGrid.ModelLoaded += treeGrid_ModelLoaded;

void treeGrid_ModelLoaded(object sender, EventArgs e)

        {

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


Please find the sample from the following location,
Sample Link: http://www.syncfusion.com/downloads/support/forum/123722/ze/GridTreeControl_RowHeight1095114827

Regards,

Jayapradha


Loader.
Up arrow icon