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: Document-Processing/Excel/Spreadsheet/React/rows-and-columns.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,13 +17,13 @@ Spreadsheet is a tabular format consisting of rows and columns. The intersection
17
17
18
18
## Insert
19
19
20
-
You can insert rows or columns anywhere in a spreadsheet. Use the [`allowInsert`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#allowinsert) property to enable or disable the insert option in Spreadsheet.
20
+
You can insert rows or columns anywhere in a spreadsheet. Use the [`allowInsert`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet#allowinsert) property to enable or disable the insert option in Spreadsheet.
21
21
22
22
### Row
23
23
24
24
The rows can be inserted in the following ways,
25
25
26
-
* Using [`insertRow`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#insertrow) method, you can insert the rows once the component is loaded.
26
+
* Using [`insertRow`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet#insertrow) method, you can insert the rows once the component is loaded.
27
27
* Using context menu, insert the empty rows in the desired position.
28
28
29
29
The following code example shows the options for inserting rows in the spreadsheet.
@@ -49,7 +49,7 @@ The following code example shows the options for inserting rows in the spreadshe
49
49
50
50
The columns can be inserted in the following ways,
51
51
52
-
* Using [`insertColumn`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#insertcolumn) method, you can insert the columns once the component is loaded.
52
+
* Using [`insertColumn`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet#insertcolumn) method, you can insert the columns once the component is loaded.
53
53
* Using context menu, insert the empty columns in the desired position.
54
54
55
55
The following code example shows the options for inserting columns in the spreadsheet.
@@ -73,11 +73,11 @@ The following code example shows the options for inserting columns in the spread
73
73
74
74
## Delete
75
75
76
-
Delete support provides an option for deleting the rows and columns in the spreadsheet. Use [`allowDelete`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#allowdelete) property to enable or disable the delete option in Spreadsheet.
76
+
Delete support provides an option for deleting the rows and columns in the spreadsheet. Use [`allowDelete`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet#allowdelete) property to enable or disable the delete option in Spreadsheet.
77
77
78
78
The rows and columns can be deleted dynamically in the following ways,
79
79
80
-
* Using [`delete`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#delete) method, you can delete the loaded rows and columns.
80
+
* Using [`delete`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet#delete) method, you can delete the loaded rows and columns.
81
81
* Using context menu, you can delete the selected rows and columns.
82
82
83
83
The following code example shows the delete operation of rows and columns in the spreadsheet.
@@ -149,11 +149,11 @@ The following code example shows the hide/show rows and columns operation in the
149
149
150
150
## Size
151
151
152
-
You can change the size of rows and columns in the spreadsheet by using [setRowsHeight](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#setrowsheight) and [setColumnsWidth](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#setcolumnswidth) methods.
152
+
You can change the size of rows and columns in the spreadsheet by using [setRowsHeight](https://ej2.syncfusion.com/react/documentation/api/spreadsheet#setrowsheight) and [setColumnsWidth](https://ej2.syncfusion.com/react/documentation/api/spreadsheet#setcolumnswidth) methods.
153
153
154
154
### Row
155
155
156
-
You can change the height of single or multiple rows by using the [setRowsHeight](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#setrowsheight) method.
156
+
You can change the height of single or multiple rows by using the [setRowsHeight](https://ej2.syncfusion.com/react/documentation/api/spreadsheet#setrowsheight) method.
157
157
158
158
You can provide the following type of ranges to the method:
159
159
@@ -185,7 +185,7 @@ The following code example shows how to change the height for single/multiple ro
185
185
186
186
### Column
187
187
188
-
You can change the width of single or multiple columns by using the [setColumnsWidth](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#setcolumnswidth) method.
188
+
You can change the width of single or multiple columns by using the [setColumnsWidth](https://ej2.syncfusion.com/react/documentation/api/spreadsheet#setcolumnswidth) method.
189
189
190
190
You can provide the following type of ranges to the method:
191
191
@@ -217,7 +217,7 @@ The following code example shows how to change the width for single/multiple col
217
217
218
218
## Changing text in column headers
219
219
220
-
Using the [`beforeCellRender`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#beforecellrender) event, you can change the text in the column headers. In that event, you can use the `e-header-cell` class to identify the header cell element and update its text value.
220
+
Using the [`beforeCellRender`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet#beforecellrender) event, you can change the text in the column headers. In that event, you can use the `e-header-cell` class to identify the header cell element and update its text value.
221
221
222
222
The following code example shows how to change the text in the column headers.
0 commit comments