Articles in this section
Category / Section

How to adjust row heights of each row based on their content?

1 min read

Xamarin.Forms DataGrid allows you to customize the row height of grid rows using the SfDataGrid.QueryRowHeight event. You can auto fit a row based on its content by using the SfDataGridHelpers.GetRowHeight method.

Note:

Handled property of the QueryRowHeightEventArgs must be set to true in the QueryRowHeight event for the height changes to take effect.

 

<sfGrid:SfDataGrid x:Name="dataGrid"
                        AutoGenerateColumns="False"
                        ColumnSizer="Star">
  <sfGrid:SfDataGrid.Columns>
    <sfGrid:GridTextColumn MappingName="OrderId" />
    <sfGrid:GridTextColumn MappingName="CustomerId" />
    <sfGrid:GridTemplateColumn MappingName="CustomerQuery">
      <sfGrid:GridTemplateColumn.CellTemplate>
        <DataTemplate>
          <Label Text="{Binding CustomerQuery}" />
        </DataTemplate>
      </sfGrid:GridTemplateColumn.CellTemplate>
    </sfGrid:GridTemplateColumn>
    <sfGrid:GridTextColumn MappingName="Country" />
  </sfGrid:SfDataGrid.Columns>
</sfGrid:SfDataGrid>

 

private ViewModel viewModel;
public MainPage()
{
       InitializeComponent();
       viewModel = new ViewModel();
       dataGrid.ItemsSource = viewModel.OrdersInfo;
       dataGrid.QueryRowHeight += DataGrid_QueryRowHeight;
}
 
private void DataGrid_QueryRowHeight(object sender, Syncfusion.SfDataGrid.XForms.QueryRowHeightEventArgs e)
{
        if(e.RowIndex > 0)
        {
             e.Height = SfDataGridHelpers.GetRowHeight(dataGrid, e.RowIndex);
             e.Handled = true;
         }
}

 

Note:

To skip the header row the condition (e.RowIndex > 0) is added.

 

Screenshot

C:\Users\pavithra.sivakumar\AppData\Local\Microsoft\Windows\INetCacheContent.Word\Screenshot_2017-02-01-15-19-25.png

 

Sample Link

How to adjust row heights of each row based on their content?

 

Conclusion

I hope you enjoyed learning about how to adjust row heights of each row based on their content.

You can refer to our  Xamarin.Forms DataGrid feature tour page to know about its other groundbreaking feature representations. You can also explore our  Xamarin.Forms DataGrid documentation to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (2)
Please  to leave a comment
TC
Thomas Carney

This doesn't seem to be working anymore. Doing this exact code I get an IndexOutOfRangeException.

TC
Thomas Carney

I get the exception on GetRowHeight(e.RowIndex) to get more precise

PK
Pradeep Kumar Balakrishnan

Hi Thomas,

Thank you for using Syncfusion controls.

We have checked the reported issue “Application crashed when calling DataGrid helper method to calculate row height “dataGrid.GetRowHeight(e.RowIndex)” in Xamarin forms” unfortunately, we cannot be able to replicate the reported issue, and it is working fine from our end. Checked with Group summary, Table summary and unbound row use cases. We have attached the tested sample for your reference in the following link. Sample link : https://www.syncfusion.com/downloads/support/directtrac/general/ze/DataGridDemo519449693

Provide the following details to validate the reported issue further. • Complete code snippet of DataGrid settings. • Xamarin and Syncfusion product version. • Issue reproducing platform at your end.

If possible, please check the attached sample from your end and let us know the issue persist in the provided sample as well? If not kindly modify the sample based on your scenario and revert to us with the details. It will be helpful for us to check on it and provide you the solution.

Regards, Pradeep Kumar B

BO
Bobby

Is there a way to set the row height to a default height if the row is empty?

Access denied
Access denied