We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

GridDataControl Set Auto Row Height

Hi,

Good day.

How to set GridDataControl row height to 'Auto' ?

Thank you .

Regards,
Yap

3 Replies

GL Ganeshkumar Lingappan Syncfusion Team May 12, 2015 03:43 AM UTC

Hi Yap,

Thank you for contacting Syncfusion support.

We have analyzed your query and you can achieve your requirement by using Model.ResizeRowsToFit method. Please refer the below code-snippet and attached sample in below mentioned location.

Code-Snippet :

void datagrid_Loaded(object sender, RoutedEventArgs e)

{

this.datagrid.Model.ResizeRowsToFit(GridRangeInfo.Table(), GridResizeToFitOptions.NoShrinkSize);

}

We have SfDataGrid also and currently we have implemented many features in SfDataGrid and please refer the below UG links for the difference between the grids and features list for SfDataGrid. SfDataGrid has been designed based on the WPF template-based architecture which provides support to customize the Grid easily. Comparatively, the performance of SfDataGrid control is better than the GridDataControl.

For more details refer the below UG link.

UG link: http://help.syncfusion.com/ug/wpf/documents/choosebetweendiffere.htm

http://help.syncfusion.com/ug/wpf/documents/features2.htm

In SfDataGrid you can Set the AutoRowHeight through the QueryRowHeight event and refer the below code-snippet to set the AutoRowHeight in SfDataGrid.

Code-Snippet:

void datagrid_QueryRowHeight(object sender, Syncfusion.UI.Xaml.Grid.QueryRowHeightEventArgs e)

{

e.Height = Height;

e.Handled = true;

}

Sample-Link : http://www.syncfusion.com/downloads/support/directtrac/138555/SelectedIndex-224945340.zip

Regards,

Ganeshkumar




SC Saranya CJ Syncfusion Team May 12, 2015 04:16 AM UTC

From: yap rwen [mailto:[email protected]]
Sent: Tuesday, May 12, 2015 12:07 AM
To: Syncfusion Support
Subject: Re: Syncfusion support community forum 119095, GridDataControl Set Auto Row Height, has been updated.


Hi Ganeshkumar,

Thank you very much.

Regards,
Yap

Sent from my ASUS




SC Saranya CJ Syncfusion Team May 12, 2015 08:41 AM UTC

Hi Yap,

Thank you for your revert. Please let us know if you require any other assistance on this.

Regards,
Saranya

Loader.
Up arrow icon