From eacb1990b6b16650a7eb6045e5e4d38e22f40d47 Mon Sep 17 00:00:00 2001
From: SasthaPrathap <88700192+SasthaPrathap@users.noreply.github.com>
Date: Tue, 28 Oct 2025 19:23:50 +0530
Subject: [PATCH] Merge pull request #1661 from
syncfusion-content/987773-ug-content-corrections
987773: Fix formatting and content issues in user guide
---
Document-Processing-toc.html | 2 +-
.../Spreadsheet/Blazor/rows-and-columns.md | 30 +++++++------------
2 files changed, 11 insertions(+), 21 deletions(-)
diff --git a/Document-Processing-toc.html b/Document-Processing-toc.html
index 10694e6b8..16a656dd5 100644
--- a/Document-Processing-toc.html
+++ b/Document-Processing-toc.html
@@ -4797,7 +4797,7 @@
Editing
Formulas
Context Menu
- Row and Columns
+ Rows and Columns
Filtering
Sorting
Hyperlink
diff --git a/Document-Processing/Excel/Spreadsheet/Blazor/rows-and-columns.md b/Document-Processing/Excel/Spreadsheet/Blazor/rows-and-columns.md
index 068d77351..8b951d69d 100644
--- a/Document-Processing/Excel/Spreadsheet/Blazor/rows-and-columns.md
+++ b/Document-Processing/Excel/Spreadsheet/Blazor/rows-and-columns.md
@@ -20,15 +20,10 @@ You can insert rows or columns anywhere in a spreadsheet.
### Row
-The rows can be inserted in the following ways:
+The rows can be inserted in the following ways,
-**Using the context menu**
-
- Insert rows in the desired position by right-clicking on a row header.
-
-**Using `InsertRowAsync` method**
-
-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.
+* 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.
+* Using context menu, insert the rows in the desired position.
The following code example shows the options for inserting rows in the spreadsheet.
@@ -74,15 +69,10 @@ The following code example shows the options for inserting rows in the spreadshe
### Column
-The columns can be inserted in the following ways:
-
-**Using the context menu**
-
-Insert columns in the desired position by right-clicking on a column header.
-
-**Using `InsertColumnAsync` method**
+The columns can be inserted in the following ways,
-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.
+* 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.
+* Using context menu, insert the columns in the desired position.
The following code example shows the options for inserting columns in the spreadsheet.
@@ -133,16 +123,16 @@ The Blazor Spreadsheet component enables you to define the initial number of row
* The default `RowCount` is **1000**.
* The default `ColumnCount` is **200**.
-**Rendering Behavior**
+### Rendering Behavior
- **Without Data Source:**
- - When no data is bound to the spreadsheet, the sheet renders empty cells up to RowCount × ColCount.
+ - When no data is bound to the spreadsheet, the sheet renders empty cells up to the specified row and column counts.
- **With Data Source (e.g., byte array or imported file):**
- - If the data source has fewer rows/columns than RowCount/ColCount, the spreadsheet renders additional empty rows/columns to meet the specified counts.
- - 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.
+ - 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.
+ - 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.
You can set these properties as follows: