You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MAUI/DataGrid/freeze-panes.md
+36-2Lines changed: 36 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,9 @@ In the [Syncfusion® .NET MAUI DataGrid](https://help.syncfusion.com/cr/maui/Syn
15
15
| Property name | Description |
16
16
|---------------|-------------|
17
17
|[FrozenRowCount](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.SfDataGrid.html#Syncfusion_Maui_DataGrid_SfDataGrid_FrozenRowCount)| Sets the number of rows to freeze at the top of the DataGrid |
18
+
|`FooterFrozenRowCount`| Sets the number of rows to freeze at the bottom (footer) of the DataGrid |
18
19
|[FrozenColumnCount](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.SfDataGrid.html#Syncfusion_Maui_DataGrid_SfDataGrid_FrozenColumnCount)| Sets the number of columns to freeze at the left side of the DataGrid |
20
+
|`FooterFrozenColumnCount`| Sets the number of columns to freeze at the right side of the DataGrid |
19
21
20
22
To get start quickly with freeze rows and columns in .NET MAUI DataGrid, you can check on this video:
21
23
@@ -37,9 +39,25 @@ The following code snippet shows how to freeze columns in the DataGrid:
* The `FrozenColumnCount` value should be less than the number of columns displayed in the view. For example, if you have 5 columns in the view, you can set the `FrozenColumnCount` value to a maximum of 4.
60
+
* The `FrozenColumnCount`and `FooterFrozenColumnCount`value should be less than the number of columns displayed in the view. For example, if you have 5 columns in the view, you can set the `FrozenColumnCount` and `FooterFrozenColumnCount` value to a maximum of 4.
43
61
44
62
## Freeze rows
45
63
@@ -57,9 +75,25 @@ The following code snippet shows how to freeze rows in the DataGrid:
* The `FrozenRowCount` value should be less than the number of rows displayed in the view. For example, if you have 10 rows in the view, you can set the `FrozenRowCount` value to a maximum of 9.
96
+
* The `FrozenRowCount`and `FooterFrozenRowCount`value should be less than the number of rows displayed in the view. For example, if you have 10 rows in the view, you can set the `FrozenRowCount` and `FooterFrozenRowCount` value to a maximum of 9.
0 commit comments