Skip to content

Commit 2224925

Browse files
Merge pull request #1668 from syncfusion-content/987773-CherryPick
987773: Fix formatting and content issues in user guide
2 parents 089a1fb + eacb199 commit 2224925

File tree

2 files changed

+11
-21
lines changed

2 files changed

+11
-21
lines changed

Document-Processing-toc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4878,7 +4878,7 @@
48784878
<li><a href="/document-processing/excel/spreadsheet/blazor/editing">Editing</a></li>
48794879
<li><a href="/document-processing/excel/spreadsheet/blazor/formulas">Formulas</a></li>
48804880
<li><a href="/document-processing/excel/spreadsheet/blazor/contextmenu">Context Menu</a></li>
4881-
<li><a href="/document-processing/excel/spreadsheet/blazor/rows-and-columns">Row and Columns</a></li>
4881+
<li><a href="/document-processing/excel/spreadsheet/blazor/rows-and-columns">Rows and Columns</a></li>
48824882
<li><a href="/document-processing/excel/spreadsheet/blazor/filtering">Filtering</a></li>
48834883
<li><a href="/document-processing/excel/spreadsheet/blazor/sorting">Sorting</a></li>
48844884
<li><a href="/document-processing/excel/spreadsheet/blazor/hyperlink">Hyperlink</a></li>

Document-Processing/Excel/Spreadsheet/Blazor/rows-and-columns.md

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,10 @@ You can insert rows or columns anywhere in a spreadsheet.
2020

2121
### Row
2222

23-
The rows can be inserted in the following ways:
23+
The rows can be inserted in the following ways,
2424

25-
**Using the context menu**
26-
27-
Insert rows in the desired position by right-clicking on a row header.
28-
29-
**Using `InsertRowAsync` method**
30-
31-
Using [`InsertRowAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_InsertRowAsync_System_Int32_System_Int32_System_Object_Syncfusion_Blazor_Spreadsheet_RowPosition_) method, you can insert the rows once the component is loaded.
25+
* Using [`InsertRowAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_InsertRowAsync_System_Int32_System_Int32_System_Object_Syncfusion_Blazor_Spreadsheet_RowPosition_) method, you can insert the rows once the component is loaded.
26+
* Using context menu, insert the rows in the desired position.
3227

3328
The following code example shows the options for inserting rows in the spreadsheet.
3429

@@ -74,15 +69,10 @@ The following code example shows the options for inserting rows in the spreadshe
7469

7570
### Column
7671

77-
The columns can be inserted in the following ways:
78-
79-
**Using the context menu**
80-
81-
Insert columns in the desired position by right-clicking on a column header.
82-
83-
**Using `InsertColumnAsync` method**
72+
The columns can be inserted in the following ways,
8473

85-
Using [`InsertColumnAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_InsertColumnAsync_System_Int32_System_Int32_System_Object_Syncfusion_Blazor_Spreadsheet_ColumnPosition_) method, you can insert the columns once the component is loaded.
74+
* Using [`InsertColumnAsync`](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Spreadsheet.SfSpreadsheet.html#Syncfusion_Blazor_Spreadsheet_SfSpreadsheet_InsertColumnAsync_System_Int32_System_Int32_System_Object_Syncfusion_Blazor_Spreadsheet_ColumnPosition_) method, you can insert the columns once the component is loaded.
75+
* Using context menu, insert the columns in the desired position.
8676

8777
The following code example shows the options for inserting columns in the spreadsheet.
8878

@@ -133,16 +123,16 @@ The Blazor Spreadsheet component enables you to define the initial number of row
133123
* The default `RowCount` is **1000**.
134124
* The default `ColumnCount` is **200**.
135125

136-
**Rendering Behavior**
126+
### Rendering Behavior
137127

138128
- **Without Data Source:**
139129

140-
- When no data is bound to the spreadsheet, the sheet renders empty cells up to RowCount × ColCount.
130+
- When no data is bound to the spreadsheet, the sheet renders empty cells up to the specified row and column counts.
141131

142132
- **With Data Source (e.g., byte array or imported file):**
143133

144-
- If the data source has fewer rows/columns than RowCount/ColCount, the spreadsheet renders additional empty rows/columns to meet the specified counts.
145-
- If the data source has more rows/columns than RowCount/ColCount, the spreadsheet renders enough rows/columns to display all data from the source (i.e., it extends beyond the specified counts to fit the data). Your data is never truncated by these properties.
134+
- If the data source contains fewer rows and columns than the specified row and column counts, the spreadsheet renders additional empty rows and columns to meet those counts.
135+
- If the data source contains more rows and columns than the specified row and column counts, the spreadsheet renders enough rows and columns to display all the data (i.e., it extends beyond those counts to fit the data). Your data is never truncated by these properties.
146136

147137

148138
You can set these properties as follows:

0 commit comments

Comments
 (0)