diff --git a/Document-Processing/Excel/Spreadsheet/Angular/clipboard.md b/Document-Processing/Excel/Spreadsheet/Angular/clipboard.md
index 8b274afaa0..ebed9d4a2d 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/clipboard.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/clipboard.md
@@ -46,7 +46,7 @@ It is used to paste the clipboard data to the selected range, rows or columns. Y
* `Paste Special` - You can paste the values with formatting.
* `Paste` - You can paste only the values without formatting.
-It also supports external clipboard operations. If you perform cut and paste, clipboard data will be cleared, whereas in copy and paste the clipboard contents will be maintained. If you perform paste inside the copied range, the clipboard data will be cleared.
+It also supports external clipboard operations. If you perform cut and paste, the clipboard data will be cleared, whereas in copy and paste the clipboard contents will be maintained. If you perform paste inside the copied range, the clipboard data will be cleared.
**User Interface**:
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/data-binding.md b/Document-Processing/Excel/Spreadsheet/Angular/data-binding.md
index 78a3133e26..043d8251ca 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/data-binding.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/data-binding.md
@@ -9,7 +9,7 @@ documentation: ug
# Data binding in Angular Spreadsheet component
-The Spreadsheet uses [DataManager](https://helpej2.syncfusion.com/angular/documentation/data), which supports both RESTful JSON data services and local JavaScript object array binding to a range. The `dataSource` property can be assigned either with the instance of [DataManager](https://helpej2.syncfusion.com/angular/documentation/data) or JavaScript object array collection.
+The Spreadsheet uses [DataManager](https://ej2.syncfusion.com/angular/documentation/data), which supports both RESTful JSON data services and local JavaScript object array binding to a range. The `dataSource` property can be assigned either with the instance of [DataManager](https://ej2.syncfusion.com/angular/documentation/data) or JavaScript object array collection.
> To bind data to a cell, use `cell data binding` support.
@@ -31,7 +31,7 @@ Refer to the following code example for local data binding.
{% previewsample "/document-processing/samples/spreadsheet/angular/local-data-binding-cs1" %}
-> The local data source can also be provided as an instance of the [DataManager](https://helpej2.syncfusion.com/angular/documentation/data). By default, [DataManager](https://helpej2.syncfusion.com/angular/documentation/data) uses [`JsonAdaptor`](https://ej2.syncfusion.com/angular/documentation/data/adaptors#json-adaptor) for local data-binding.
+> The local data source can also be provided as an instance of the [DataManager](https://ej2.syncfusion.com/angular/documentation/data). By default, [DataManager](https://ej2.syncfusion.com/angular/documentation/data) uses [`JsonAdaptor`](https://ej2.syncfusion.com/angular/documentation/data/adaptors#json-adaptor) for local data-binding.
### Customizing column data mapping
@@ -55,7 +55,7 @@ The following code example demonstrates how to customize the mapping of column d
## Remote data
-To bind remote data to the Spreadsheet control, assign service data as an instance of [DataManager](https://helpej2.syncfusion.com/angular/documentation/data) to the `dataSource` property. To interact with remote data source, provide the service endpoint `url`.
+To bind remote data to the Spreadsheet control, assign service data as an instance of [DataManager](https://ej2.syncfusion.com/angular/documentation/data) to the `dataSource` property. To interact with remote data source, provide the service endpoint `url`.
Refer to the following code example for remote data binding.
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/formulas.md b/Document-Processing/Excel/Spreadsheet/Angular/formulas.md
index 620c18cc23..cf14e42747 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/formulas.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/formulas.md
@@ -3,7 +3,7 @@ layout: post
title: Formulas in Angular Spreadsheet component | Syncfusion
description: Learn here all about Formulas in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Formulas
+control: Formulas
documentation: ug
---
@@ -62,7 +62,7 @@ The following code example shows an unsupported formula in the spreadsheet.
{% previewsample "/document-processing/samples/spreadsheet/angular/formula-cs1" %}
-Second, if you want to directly compute any formula or expression, you can use the [computeExpression](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#computeexpression) method. This method will work for both built-in and used-defined/custom formula.
+Second, if you want to directly compute any formula or expression, you can use the [computeExpression](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#computeexpression) method. This method will work for both built-in and user-defined/custom formula.
The following code example shows how to use `computeExpression` method in the spreadsheet.
@@ -84,7 +84,7 @@ Formula bar is used to edit or enter cell data in much easier way. By default, t
## Named Ranges
-You can define a meaningful name for a cell range and use it in the formula for calculation. It makes your formula much easier to understand and maintain. You can add named ranges to the Spreadsheet in the following ways,
+You can define a meaningful name for a cell range and use it in a formula for calculation. Named ranges make formulas much easier to understand and maintain. You can add named ranges to the Spreadsheet in the following ways:
* Using the [`definedNames`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#definednames) collection, you can add multiple named ranges at initial load.
* Use the [`addDefinedName`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#adddefinedname) method to add a named range dynamically.
@@ -118,7 +118,7 @@ You can configure the calculate mode using the [`calculationMode`](https://ej2.s
In Automatic Mode, formulas are recalculated instantly whenever a dependent cell is modified. This mode is perfect for scenarios where real-time updates are essential, ensuring that users see the latest results without additional actions.
-For example, consider a spreadsheet where cell `C1` contains the formula `=A1+B1`. When the value in `A1` or `B1` changes, `C1` updates immediately without requiring any user intervention. You can enable this mode by setting the [`calculationMode`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#calculationmode) property to `Automatic`.
+For example, consider a spreadsheet where cell `C1` contains the formula `=A1+B1`. When the value in `A1` or `B1` changes, `C1` updates immediately without requiring any user intervention. To enable this mode, set the [`calculationMode`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#calculationmode) property to `Automatic`.
The following code example demonstrates how to set the Automatic calculation mode in a Spreadsheet.
@@ -138,7 +138,7 @@ The following code example demonstrates how to set the Automatic calculation mod
In Manual Mode, formulas are not recalculated automatically when cell values are modified. Instead, recalculations must be triggered explicitly. This mode is ideal for scenarios where performance optimization is a priority, such as working with large datasets or computationally intensive formulas.
-For example, imagine a spreadsheet where cell `C1` contains the formula `=A1+B1`. When the value in `A1` or `B1` changes, the value in `C1` will not update automatically. Instead, the recalculation must be initiated manually using either the `Calculate Sheet` or `Calculate Workbook` option. To manually initiate recalculation, the Spreadsheet provides two options:
+For example, consider a spreadsheet where cell `C1` contains the formula `=A1+B1`. When the value in `A1` or `B1` changes, the value in `C1` will not update automatically. Instead, the recalculation must be initiated manually using either the `Calculate Sheet` or `Calculate Workbook` option. To manually initiate recalculation, the Spreadsheet provides two options:
* `Calculate Sheet`: Recalculates formulas for the active sheet only.
* `Calculate Workbook`: Recalculates formulas across all sheets in the workbook.
@@ -159,7 +159,7 @@ The following code example demonstrates how to set the Manual calculation mode i
## Supported Formulas
-The list of supported formulas can be find in following [`link`](https://help.syncfusion.com/document-processing/excel/spreadsheet/angular/formulas#supported-formulas).
+The list of supported formulas can be found in the following [`link`](https://help.syncfusion.com/document-processing/excel/spreadsheet/angular/formulas#supported-formulas).
## Formula Error Dialog
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/freeze-pane.md b/Document-Processing/Excel/Spreadsheet/Angular/freeze-pane.md
index 4c963c3f32..479b7b362b 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/freeze-pane.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/freeze-pane.md
@@ -3,7 +3,7 @@ layout: post
title: Freeze pane in Angular Spreadsheet component | Syncfusion
description: Learn here all about Freeze pane in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Freeze pane
+control: Freeze pane
documentation: ug
---
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/global-local.md b/Document-Processing/Excel/Spreadsheet/Angular/global-local.md
index 030e191564..f867f4cba0 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/global-local.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/global-local.md
@@ -11,7 +11,7 @@ documentation: ug
## Localization
-The [Localization](https://helpej2.syncfusion.com/angular/documentation/common/globalization/localization) library allows you to localize the default text content of the Spreadsheet. The [Angular Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/angular-spreadsheet-editor) has static text on some features (cell formatting, Merge, Data validation, etc.) that can be changed to other cultures (Arabic, Deutsch, French, etc.) by defining the [`locale`]https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#locale) value and translation object.
+The [Localization](https://ej2.syncfusion.com/angular/documentation/common/globalization/localization) library allows you to localize the default text content of the Spreadsheet. The [Angular Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/angular-spreadsheet-editor) has static text on some features (cell formatting, Merge, Data validation, etc.) that can be changed to other cultures (Arabic, Deutsch, French, etc.) by defining the [`locale`]https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#locale) value and translation object.
The following list of properties and their values are used in the Spreadsheet.
@@ -189,10 +189,10 @@ UnprotectSheet | Unprotect Sheet
SelectCells | Select cells
FormatCells | Format cells
FormatRows | Format rows
-Format Columns | Format columns
+FormatColumns | Format columns
InsertLinks | Insert links
ProtectContent | Protect the contents of locked cells
-ProtectAllowUser | Allow all users of this worksheet to |
+ProtectAllowUser | Allow all users of this worksheet to
EditAlert | The cell you're trying to change is protected. To make a change, unprotect the sheet.
FindReplaceTooltip | Find & Replace
InsertingEmptyValue | Reference value is not valid.
@@ -212,7 +212,7 @@ SearchWithin | Search within
SearchBy | Search by
Reference | Reference
Workbook | Workbook
-NoElements | We couldn’t find what you were looking for.
+NoElements | We couldn't find what you were looking for.
FindWhat | Find what
ReplaceWith | Replace with
EnterValue | Enter Value
@@ -238,7 +238,7 @@ EqualTo | Equal to
NotEqualTo | Not equal to
Greaterthan | Greater than
Lessthan | Less than
-GreaterThanOrEqaulTo | Greater than or eqaul to
+GreaterThanOrEqualTo | Greater than or equal to
LessThanOrEqualTo | Less than or equal to
InCellDropDown | In-cell-dropdown
Sources | Sources
@@ -361,7 +361,7 @@ VerticalAxisTitle | Vertical Axis Title
HorizontalAxisTitle | Horizontal Axis Title
EnterTitle | Enter Title
ProtectWorkbook | Protect Workbook
-Password | Password (optional) |
+Password | Password (optional)
unProtectPassword | Password
EnterThePassword | Enter the password
ConfirmPassword | Confirm Password
@@ -376,7 +376,7 @@ IsProtected | is protected
### Loading translations
-To load translation object in an application, use [`load`](https://helpej2.syncfusion.com/angular/documentation/common/globalization/internationalization#loading-cldr-json-data) function of the [`L10n`](https://helpej2.syncfusion.com/angular/documentation/common/globalization/internationalization) class.
+To load translation object in an application, use [`load`](https://ej2.syncfusion.com/angular/documentation/common/globalization/internationalization#loading-cldr-json-data) function of the [`L10n`](https://ej2.syncfusion.com/angular/documentation/common/globalization/internationalization) class.
The following example demonstrates the Spreadsheet in `French` culture. In the below sample we have translated the ribbon tab names and Home tab content (clipboard, cell style).
@@ -394,7 +394,7 @@ The following example demonstrates the Spreadsheet in `French` culture. In the b
## Internationalization
-The Internationalization library is used to globalize number, date, and time values in the spreadsheet component.
+The Internationalization library is used to globalize number, date, and time values in the Spreadsheet component.
For importing json files in your application, you need to include the json-typings.d.ts file.
@@ -443,4 +443,4 @@ You can refer to our [Angular Spreadsheet Editor](https://www.syncfusion.com/spr
## See Also
-* [Localization](https://helpej2.syncfusion.com/angular/documentation/common/globalization/localization)
+* [Localization](https://ej2.syncfusion.com/angular/documentation/common/globalization/localization)
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/illustrations.md b/Document-Processing/Excel/Spreadsheet/Angular/illustrations.md
index 4d88486d52..d675abb63f 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/illustrations.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/illustrations.md
@@ -1,4 +1,4 @@
----
+---
layout: post
title: Illustrations in Angular Spreadsheet component | Syncfusion
description: Learn here all about Illustrations in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
@@ -19,17 +19,17 @@ Adding images to a spreadsheet can enhance the visual appeal and help to convey
### Insert Image
-You can insert the image by using one of the following ways,
+You can insert an image in one of the following ways:
* Selecting the Insert tab in the Ribbon toolbar, and then choose the Image tab.
* Use the `insertImage()` method programmatically.
-The available parameters in `insertImage()` method are,
+The available parameters in `insertImage()` method are:
| Parameter | Type | Description |
|-----|------|----|
-| images | `ImageModel` | Specifies the options to insert image in spreadsheet. |
-| range(optional) | `string` | Specifies the range in spreadsheet. |
+| images | `ImageModel` | Specifies the options to insert an image in the spreadsheet. |
+| range(optional) | `string` | Specifies the range in the spreadsheet. |
The available arguments in `ImageModel` are:
@@ -47,12 +47,12 @@ The available arguments in `ImageModel` are:
* If you want to delete the image, just select the image, and then press the Delete key.
* Use the `deleteImage()` method programmatically.
-The available parameters in `deleteImage()` method are,
+The available parameters in `deleteImage()` method are:
| Parameter | Type | Description |
|-----|------|----|
| id | `string` | Specifies the id of the image element to be deleted. |
-| range(optional) | `string` | Specifies the range in spreadsheet. |
+| range(optional) | `string` | Specifies the range in the spreadsheet. |
### Image Customization
@@ -95,7 +95,7 @@ A chart is a graphical representation of data, that organizes and represents a s
### Types of chart
-The following types of charts are available in the Spreadsheet.
+The following chart types are available in the Spreadsheet:
>* Column Chart
>* Bar Chart
@@ -106,18 +106,18 @@ The following types of charts are available in the Spreadsheet.
### Insert Chart
-You can insert the chart by using one of the following ways,
+You can insert a chart in one of the following ways:
* Select the chart icon in the Ribbon toolbar under the Insert Tab.
* Use the [`insertChart()`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#insertchart) method programmatically.
-The available parameter in the [`insertChart()`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#insertchart) method is,
+The available parameter in the [`insertChart()`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#insertchart) method is:
| Parameter | Type | Description |
|-----|------|----|
| chart | `ChartModel` | Specifies the options to insert a chart in the spreadsheet. |
-The available arguments in the `ChartModel` are:
+The available arguments in `ChartModel` are:
* type: Specifies the type of chart.
* theme: Specifies the theme of a chart.
@@ -169,7 +169,7 @@ Chart feature allows you to view and insert a chart in a spreadsheet, and you ca
{% previewsample "/document-processing/samples/spreadsheet/angular/chart-cs1" %}
-#### Customization of line chart markers
+#### Customization of Line Chart Markers
Using the [`actionBegin`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#actionbegin) event, you can change the shape, size, fill color, and border of the line chart marker. In the following example, you can see the modified marker appearance, such as shape and size, while creating the line chart with UI interaction.
@@ -202,4 +202,4 @@ You can refer to our [Angular Spreadsheet Editor](https://www.syncfusion.com/spr
* [Formatting](./formatting)
* [Rows and columns](./rows-and-columns)
* [Hyperlink](./link)
-* [Sorting](./sort)
\ No newline at end of file
+* [Sorting](./sort)
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/keyboard-shortcuts.md b/Document-Processing/Excel/Spreadsheet/Angular/keyboard-shortcuts.md
index 4c73a38847..fc63d3c99b 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/keyboard-shortcuts.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/keyboard-shortcuts.md
@@ -3,7 +3,7 @@ layout: post
title: Keyboard shortcuts in Angular Spreadsheet component | Syncfusion
description: Learn here all about Keyboard shortcuts in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Keyboard shortcuts
+control: Keyboard shortcuts
documentation: ug
---
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/link.md b/Document-Processing/Excel/Spreadsheet/Angular/link.md
index 11faff6930..b07a7b422f 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/link.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/link.md
@@ -39,7 +39,7 @@ In the Edit Link dialog box, make the changes that you want, and click UPDATE.
## Remove Hyperlink
-Performing this operation remove a single hyperlink without losing the display text.
+Removing a hyperlink clears the link from a cell without losing the display text.
**User Interface**:
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/mobile-responsiveness.md b/Document-Processing/Excel/Spreadsheet/Angular/mobile-responsiveness.md
index 98fd49af12..f24d0e1dab 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/mobile-responsiveness.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/mobile-responsiveness.md
@@ -3,7 +3,7 @@ layout: post
title: Mobile responsiveness in Angular Spreadsheet component | Syncfusion
description: Learn here all about Mobile responsiveness in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Mobile responsiveness
+control: Mobile responsiveness
documentation: ug
---
@@ -11,7 +11,7 @@ documentation: ug
The Spreadsheet control rendered in desktop mode will be adaptive in all mobile devices where the layout gets adjusted based on their parent element’s dimensions to accommodate any resolution.
-You can see the overflowed items of ribbon header, ribbon content, and sheet tab using touch and swipe action. The right navigation arrow is added at the end of the ribbon content through which the user can navigate towards overflowed items. Once you reached the rightmost end of the ribbon content, the right navigation arrow will change to left navigation arrow through which you can navigate to the left of the ribbon content.
+You can see the overflowed items of the ribbon header, ribbon content, and sheet tab using touch and swipe actions. A right navigation arrow is added at the end of the ribbon content through which the user can navigate towards overflowed items. Once you reach the rightmost end of the ribbon content, the right navigation arrow changes to a left navigation arrow through which you can navigate to the left of the ribbon content.

diff --git a/Document-Processing/Excel/Spreadsheet/Angular/notes.md b/Document-Processing/Excel/Spreadsheet/Angular/notes.md
index 3c0780c4bc..1f2aa528ab 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/notes.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/notes.md
@@ -3,7 +3,7 @@ layout: post
title: Notes in Angular Spreadsheet component | Syncfusion
description: Learn here all about the notes feature in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Notes
+control: Notes
documentation: ug
---
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/open-save.md b/Document-Processing/Excel/Spreadsheet/Angular/open-save.md
index f56508e5e9..8500d9ce93 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/open-save.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/open-save.md
@@ -3,11 +3,11 @@ layout: post
title: Open save in Angular Spreadsheet component | Syncfusion
description: Learn here all about Open save in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Open save
+control: Open and Save
documentation: ug
---
-# Open save in Angular Spreadsheet component
+# Open and Save in Angular Spreadsheet component
In import an excel file, it needs to be read and converted to client side Spreadsheet model. The converted client side Spreadsheet model is sent as JSON which is used to render Spreadsheet. Similarly, when you save the Spreadsheet, the client Spreadsheet model is sent to the server as JSON for processing and saved. Server configuration is used for this process.
@@ -44,7 +44,7 @@ Please find the below table for the beforeOpen event arguments.
> * Use `Ctrl + O` keyboard shortcut to open Excel documents.
> * The default value of the [allowOpen](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#allowopen) property is `true`. For demonstration purpose, we have showcased the [allowOpen](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#allowopen) property in previous code snippet.
-### Open an excel file using a file uploader
+### Open an Excel File Using a File Uploader
If you explore your machine to select and upload an excel document using the file uploader, you will receive the uploaded document as a raw file in the [success](https://ej2.syncfusion.com/angular/documentation/api/uploader/index-default#success) event of the file uploader. In this `success` event, you should pass the received raw file as an argument to the Spreadsheet's [open](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#open) method to see the appropriate output.
@@ -62,7 +62,7 @@ The following code example shows how to import an excel document using file uplo
{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs7" %}
-### Open an external URL excel file while initial load
+### Open an External URL Excel File on Initial Load
You can achieve to access the remote excel file by using the [`created`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#created) event. In this event you can fetch the excel file and convert it to a blob. Convert this blob to a file and [`open`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#open) this file by using Spreadsheet component open method.
@@ -78,7 +78,7 @@ You can achieve to access the remote excel file by using the [`created`](https:/
{% previewsample "/document-processing/samples/spreadsheet/angular/open-save-cs2" %}
-### Open an excel file from blob data
+### Open an Excel File from Blob Data
By default, the Spreadsheet component provides an option to browse files from the local file system and open them within the component. If you want to open an Excel file from blob data, you need to fetch the blob data from the server or another source and convert this blob data into a `File` object. Then, you can use the [open](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#open) method in the Spreadsheet component to load that `File` object.
@@ -96,7 +96,7 @@ Please find the code to fetch the blob data and load it into the Spreadsheet com
{% previewsample "/document-processing/samples/spreadsheet/angular/open-from-blobdata-cs1" %}
-### Open an Excel file located on a server
+### Open an Excel File Located on a Server
By default, the Spreadsheet component provides an option to browse files from the local file system and open them within the component. If you want to load an Excel file located on a server, you need to configure the server endpoint to fetch the Excel file from the server location, process it using `Syncfusion.EJ2.Spreadsheet.AspNet.Core`, and send it back to the client side as `JSON data`. On the client side, you should use the [openFromJson](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#openfromjson) method to load that `JSON data` into the Spreadsheet component.
@@ -151,7 +151,7 @@ You can find the server endpoint code to fetch and process the Excel file in thi
fetch('https://localhost:{{port_number}}/Home/Open')
```
-### Open an excel file using a hosted web service in AWS Lambda
+### Open an Excel File Using a Hosted Web Service in AWS Lambda
Before proceeding with the opening process, you should deploy the spreadsheet open/save web API service in AWS Lambda. To host the open/save web service in the AWS Lambda environment, please refer to the following KB documentation.
@@ -232,12 +232,12 @@ export class AppComponent {
```csharp
public IActionResult Open(OpenOptions openOptions)
{
- // Convert the base64 string to bytes array.
+ // Convert the base64 string to a byte array.
byte[] bytes = Convert.FromBase64String(openOptions.File);
- // Loading the bytes array to stream.
+ // Load the byte array into a memory stream.
MemoryStream stream = new MemoryStream(bytes);
OpenRequest open = new OpenRequest();
- // Converting the stream into FormFile.
+ // Convert the stream into a FormFile.
open.File = new FormFile(stream, 0, bytes.Length, "Sample", "Sample." + openOptions.Extension);
if (string.IsNullOrEmpty(openOptions.Password))
open.Password = openOptions.Password;
@@ -253,7 +253,7 @@ public class OpenOptions
}
```
-### Open an excel file from Base64 string data
+### Open an Excel File from Base64 String Data
In the Spreadsheet component, there is no direct option to open data as a `Base64` string. To achieve this, the `import()` function fetches the `Base64` string, converts it to a Blob, creates a File object from the Blob, and then opens it using the [open](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#open) method in the spreadsheet.
@@ -271,7 +271,7 @@ The following code example shows how to open the spreadsheet data as base64 stri
{% previewsample "/document-processing/samples/spreadsheet/angular/base-64-string" %}
-### Open excel file into a read-only mode
+### Open an Excel File in Read-Only Mode
You can open excel file into a read-only mode by using the [`openComplete`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#opencomplete) event. In this event, you must protect all the sheets and lock its used range cells by using [`protectSheet`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#protectsheet) and [`lockCells`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#lockcells) methods.
@@ -467,7 +467,7 @@ public IActionResult Open(IFormCollection openRequest)
## Save
-The Spreadsheet control saves its data, style, format, and more as Excel file document. To enable this feature, set [`allowSave`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#allowsave) as `true` and assign service url to the [`saveUrl`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#saveurl) property.
+The Spreadsheet control saves its data, style, format, and more as an Excel file document. To enable this feature, set [`allowSave`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#allowsave) as `true` and assign the service URL to the [`saveUrl`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#saveurl) property.
**User Interface**:
@@ -503,7 +503,7 @@ Please find the below table for the beforeSave event arguments.
> * The default value of [allowSave](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#allowsave) property is `true`. For demonstration purpose, we have showcased the [allowSave](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#allowsave) property in previous code snippet.
> * Demo purpose only, we have used the online web service url link.
-### Save an excel file as blob data
+### Save an Excel File as Blob Data
By default, the Spreadsheet component saves the Excel file and downloads it to the local file system. If you want to save an Excel file as blob data, you need to set `needBlobData` property to **true** and `isFullPost` property to **false** in the [beforeSave](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#beforesave) event of the spreadsheet. Subsequently, you will receive the spreadsheet data as a blob in the [saveComplete](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#savecomplete) event. You can then post the blob data to the server endpoint for saving.
@@ -521,7 +521,7 @@ Please find below the code to retrieve blob data from the Spreadsheet component
{% previewsample "/document-processing/samples/spreadsheet/angular/save-as-blobdata-cs1" %}
-### Save an Excel file to a server
+### Save an Excel File to a Server
By default, the Spreadsheet component saves the Excel file and downloads it to the local file system. If you want to save an Excel file to a server location, you need to configure the server endpoint to convert the spreadsheet data into a file stream and save it to the server location. To do this, first, on the client side, you must convert the spreadsheet data into `JSON` format using the [saveAsJson](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#saveasjson) method and send it to the server endpoint. On the server endpoint, you should convert the received spreadsheet `JSON` data into a file stream using `Syncfusion.EJ2.Spreadsheet.AspNet.Core`, then convert the stream into an Excel file, and finally save it to the server location.
@@ -588,7 +588,7 @@ You can find the server endpoint code to save the spreadsheet data as an Excel f
fetch('https://localhost:{{port_number}}/Home/Save')
```
-### Save an excel file using a hosted web service in AWS Lambda
+### Save an Excel File Using a Hosted Web Service in AWS Lambda
Before proceeding with the save process, you should deploy the spreadsheet open/save web API service in AWS Lambda. To host the open/save web service in the AWS Lambda environment, please refer to the following KB documentation.
@@ -748,7 +748,7 @@ The following code snippet demonstrates how to configure the serialization optio
{% previewsample "/document-processing/samples/spreadsheet/angular/save-as-json" %}
-### Send and receive custom params from client to server
+### Send and Receive Custom Parameters from Client to Server
Passing the custom parameters from client to server by using [`beforeSave`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#beforesave) event.
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/overview.md b/Document-Processing/Excel/Spreadsheet/Angular/overview.md
index 5e279074ea..0d79787d82 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/overview.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/overview.md
@@ -3,13 +3,13 @@ layout: post
title: Overview of the Angular Spreadsheet Component| Syncfusion
description: Learn here all about overview of the Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Index
+control: Spreadsheet
documentation: ug
---
# Overview of the Angular Spreadsheet Component
-The [Angular Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/angular-spreadsheet-editor) is an user interactive component to organize and analyze data in tabular format with configuration options for customization. It will load data by importing an Excel/CSV file or from local and remote data sources such as JSON, RESTful services, OData services, and more. The populated data can be exported as Excel with XLSX, XLS, CSV and PDF formats.
+The [Angular Spreadsheet Editor](https://www.syncfusion.com/spreadsheet-editor-sdk/angular-spreadsheet-editor) is a user-interactive component to organize and analyze data in a tabular format, with configuration options for customization. It loads data by importing an Excel or CSV file, or from local and remote data sources such as JSON, RESTful services, OData services, and more. The populated data can be exported to Excel (XLSX and XLS), CSV, and PDF formats.

diff --git a/Document-Processing/Excel/Spreadsheet/Angular/performance-best-practices.md b/Document-Processing/Excel/Spreadsheet/Angular/performance-best-practices.md
index 29ca67ecc3..3bcf973ce9 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/performance-best-practices.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/performance-best-practices.md
@@ -3,7 +3,7 @@ layout: post
title: Performance practices in Angular Spreadsheet component | Syncfusion
description: Learn here all about performance best practices in the Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Performance
+control: Spreadsheet
documentation: ug
---
@@ -23,7 +23,7 @@ For more details, refer to the [virtual scrolling documentation](https://help.sy
### Chunk response processing
-When opening large Excel files with extensive data and features, server responses can become too large—leading to memory issues or connection failures during transmission. The Chunk Response Processing feature addresses this by breaking the response into smaller chunks and sending them in parallel to the client.
+When opening large Excel files with extensive data and features, server responses can become too large, leading to memory issues or connection failures during transmission. The Chunk Response Processing feature addresses this by breaking the response into smaller chunks and sending them in parallel to the client.
These chunks are combined on the client side to load the Excel data smoothly into the Spreadsheet. This approach avoids transmission failures due to memory constraints and ensures reliable and efficient loading of large files.
@@ -102,9 +102,9 @@ To learn more about Manual Calculation Mode and how to enable it, you can refer
### Handling large file saves with `isFullPost` option
-When saving large Excel files with extensive data and features using **File → Save As** or the **save** method, the Spreadsheet triggers a server API call through a form submit operation. This can lead to performance issues such as timeouts or delays, particularly due to the size and complexity of the workbook.
+When saving large Excel files using **File → Save As** or the [`save`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#save) method, the Spreadsheet triggers a server API call through a form submit operation. This can lead to performance issues such as timeouts or delays, particularly due to the size and complexity of the workbook.
-To mitigate these issues during the save operation, you can set the [`isFullPost`](https://helpej2.syncfusion.com/angular/documentation/api/spreadsheet/beforesaveeventargs#isfullpost) property to **false** in the [`beforeSave`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#beforesave) event of the Spreadsheet.
+To mitigate these issues during the save operation, you can set the [`isFullPost`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/beforesaveeventargs#isfullpost) property to **false** in the [`beforeSave`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#beforesave) event of the Spreadsheet.
The following code example shows how to set `isFullPost` to **false** in the Spreadsheet component:
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/performance-metrics.md b/Document-Processing/Excel/Spreadsheet/Angular/performance-metrics.md
index 98c188ced1..05a3e47bfd 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/performance-metrics.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/performance-metrics.md
@@ -3,7 +3,7 @@ layout: post
title: Performance Metrics for Angular Spreadsheet Control | Syncfusion
description: Learn about performance metrics for Angular Spreadsheet control, measured results, and environment details.
platform: document-processing
-control: Performance
+control: Spreadsheet
documentation: ug
---
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/ribbon.md b/Document-Processing/Excel/Spreadsheet/Angular/ribbon.md
index 464e3a1a25..465f2a41b9 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/ribbon.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/ribbon.md
@@ -3,7 +3,7 @@ layout: post
title: Ribbon in Angular Spreadsheet component | Syncfusion
description: Learn here all about Ribbon in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Ribbon
+control: Ribbon
documentation: ug
---
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/rows-and-columns.md b/Document-Processing/Excel/Spreadsheet/Angular/rows-and-columns.md
index ff52423d36..68b3ef5af5 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/rows-and-columns.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/rows-and-columns.md
@@ -3,7 +3,7 @@ layout: post
title: Rows and columns in Angular Spreadsheet component | Syncfusion
description: Learn here all about Rows and columns in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Rows and columns
+control: Rows and columns
documentation: ug
---
@@ -95,7 +95,7 @@ The following features have some limitations in Insert/Delete:
## Hide and show
-You can show or hide the rows and columns in the spreadsheet through property binding, method, and context menu.
+You can show or hide rows and columns in the spreadsheet through property binding, method, and context menu.
## Row
@@ -107,7 +107,7 @@ The rows can be hidden or shown through the following ways,
## Column
-The columns can be hidden or shown through following ways,
+The columns can be hidden or shown through the following ways,
* Using `hidden` property in columns, you can hide/show the columns at initial load.
* Using `hideColumn` method, you can hide the columns by specifying the start and end column index, set the last argument `hide` as `false` to unhide the hidden columns.
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/scrolling.md b/Document-Processing/Excel/Spreadsheet/Angular/scrolling.md
index 5d0b4709ef..2e15d64506 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/scrolling.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/scrolling.md
@@ -3,15 +3,15 @@ layout: post
title: Scrolling in Angular Spreadsheet component | Syncfusion
description: Learn here all about Scrolling in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Scrolling
+control: Spreadsheet
documentation: ug
---
# Scrolling in Angular Spreadsheet component
-Scrolling helps you to move quickly to different areas of the worksheet. It moves faster if we use horizontal and vertical scroll bars. Scrolling can be enabled by setting the [`allowScrolling`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#allowscrolling) as true.
+Scrolling lets you move quickly across the worksheet. It moves faster if we use horizontal and vertical scroll bars. Scrolling can be enabled by setting the [`allowScrolling`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#allowscrolling) property to `true`.
-> By default, the `allowScrolling` property is true.
+> By default, the `allowScrolling` property is `true`.
You have the following options in Scrolling by using [`scrollSettings`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/scrollSettings).
@@ -20,31 +20,31 @@ You have the following options in Scrolling by using [`scrollSettings`](https://
## Finite Scrolling
-Finite scrolling supports two type of modes in scrolling. You can use the [`isFinite`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/scrollsettings#isfinite) property in [`scrollSettings`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/scrollsettings) to specify the mode of scrolling.
+Finite scrolling supports two types of modes. You can use the [`isFinite`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/scrollsettings#isfinite) property in [`scrollSettings`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/scrollsettings) to specify the mode of scrolling.
* Finite - This mode does not create a new row/column when the scrollbar reaches the end. This can be achieved by setting the [`isFinite`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/scrollsettings#isfinite) property as `true`.
* Infinite - This mode creates a new row/column when the scrollbar reaches the end. This can be achieved by setting the [`isFinite`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/scrollsettings#isfinite) property as `false`.
-> By Default, the `isFinite` property is `false`.
+> By default, the `isFinite` property is `false`.
## Virtual Scrolling
* Virtual scrolling allows you to load data that you require (load data based on viewport size) without buffering the entire huge database. You can set the `enableVirtualization` property in `scrollSettings` as `true`.
-In virtual scrolling `enableVirtualization` is set to true means, it allows you to load the spreadsheet data while scrolling.
+When `enableVirtualization` is set to `true`, the spreadsheet loads data as you scroll instead of loading the entire dataset up front.
-> By Default, the `enableVirtualization` property is `true`.
+> By default, the `enableVirtualization` property is `true`.
**User Interface**:
-You can scroll through the worksheet using one of the following ways,
+You can scroll through the worksheet using one of the following ways:
* Using the `arrow` keys.
* Using the Horizontal and Vertical`scroll` bars.
* Using the `mouse` wheel.
-## Finite scrolling with defined rows and columns
+## Finite Scrolling with Defined Rows and Columns
If you want to perform scrolling with defined rows and columns, you must define `rowCount` and `colCount` in the [`sheets`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#sheets) property and set `isFinite` as true and `enableVirtualization` as false in `scrollSettings`.
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/selection.md b/Document-Processing/Excel/Spreadsheet/Angular/selection.md
index 2531fb16b0..b513f24985 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/selection.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/selection.md
@@ -11,7 +11,7 @@ documentation: ug
Selection provides interactive support to highlight the cell, row, or column that you select. Selection can be done through Mouse, Touch, or Keyboard interaction. To enable selection, set `mode` as `Single` | `Multiple` in [`selectionSettings`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#selectionsettings). If you set `mode` to `None`, it disables the UI selection.
-> * The default value for `mode` in `selectionSettings` is `Multiple`.
+> * The default value for `mode` in `selectionSettings` is `Multiple`.
You have the following options in Selection,
@@ -29,7 +29,7 @@ Cell selection is used to select a single or multiple cells. It can be performed
* To select a range, select a cell, then use the left mouse button to select and drag over to other cells (or) use the `Shift + arrow` keys to select the range.
* To select non-adjacent cells and cell ranges, hold `Ctrl` and select the cells.
-You can quickly locate and select specific cells or ranges by entering their names or cell references in the Name box, which is located to the left of the formula bar, and also select named or unnamed cells or ranges by using the Go To (`Ctrl+G`) command.
+You can quickly locate and select specific cells or ranges by entering their names or cell references in the Name box, which is located to the left of the formula bar. You can also select named or unnamed cells or ranges by using the Go To (`Ctrl+G`) command.
## Row selection
@@ -103,7 +103,7 @@ You can select single or multiple cells, rows, or columns using mouse and keyboa
## Remove Selection
-The following sample shows, how to remove the selection in the spreadsheet. Here changing the `mode` as `None` in [`selectionSettings`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#selectionsettings) to disable's the UI selection.
+The following sample shows how to remove the selection in the spreadsheet. Here, changing `mode` to `None` in [`selectionSettings`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#selectionsettings) disables the UI selection.
{% tabs %}
{% highlight ts tabtitle="app.ts" %}
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/sort.md b/Document-Processing/Excel/Spreadsheet/Angular/sort.md
index 0167ddb659..5ea06de416 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/sort.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/sort.md
@@ -9,11 +9,11 @@ documentation: ug
# Sort in Angular Spreadsheet component
-Sorting helps arranging the data to a specific order in a selected range of cells. You can use the [`allowSorting`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/index-default#allowsorting) property to enable or disable sorting functionality.
+Sorting helps arrange the data in a specific order within a selected range of cells. Use the [`allowSorting`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet#allowsorting) property to enable or disable sorting functionality.
> * The default value for `allowSorting` property is `true`.
-By default, the `sort` module is injected internally into Spreadsheet to perform sorting.
+By default, the `sort` module is injected internally into the Spreadsheet to perform sorting.
## Sort by cell value
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/styles.md b/Document-Processing/Excel/Spreadsheet/Angular/styles.md
index c6c2858b9c..be1e64934e 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/styles.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/styles.md
@@ -3,7 +3,7 @@ layout: post
title: Styles in Angular Spreadsheet component | Syncfusion
description: Learn here all about Styles in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Styles
+control: Styles
documentation: ug
---
@@ -149,7 +149,7 @@ Using this CSS, you can customize the Spreadsheet cell element.
### Customizing the Spreadsheet sorting icon
-Use the below CSS to customize the Spreadsheet sorting icon in the Spreadsheet ribbon. You can use the available Syncfusion® [icons](https://ej2.syncfusion.com/documentation/appearance/icons/#material) based on your theme.
+Use the below CSS to customize the Spreadsheet sorting icon in the Spreadsheet ribbon. You can use the available Syncfusion® [icons](https://ej2.syncfusion.com/documentation/appearance/icons#material) based on your theme.
```css
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/ui-builder-skill.md b/Document-Processing/Excel/Spreadsheet/Angular/ui-builder-skill.md
index 8874770a27..ed15a09aa4 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/ui-builder-skill.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/ui-builder-skill.md
@@ -160,7 +160,7 @@ Generated code follows best practices with accessible, semantic HTML, responsive
## Best Practices
-Follow these guidelines to get the most out of UI Builder and ensure high-quality production-ready result:
+Follow these guidelines to get the most out of UI Builder and ensure high-quality production-ready results:
- **Stay consistent:** Maintain consistent file organization, naming conventions, and coding standards throughout your project.
- **Use advanced AI models:** For best results, use **Claude Sonnet 4.6 or higher** capability models to produce better code quality and more accurate implementations.
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/undo-redo.md b/Document-Processing/Excel/Spreadsheet/Angular/undo-redo.md
index d84587544d..a47d653c47 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/undo-redo.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/undo-redo.md
@@ -3,13 +3,13 @@ layout: post
title: Undo redo in Angular Spreadsheet component | Syncfusion
description: Learn here all about Undo redo in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Undo redo
+control: Undo redo
documentation: ug
---
# Undo redo in Angular Spreadsheet component
-`Undo` option helps you to undone the last action performed and `Redo` option helps you to do the same action which is reverted in the Spreadsheet. You can use the [`allowUndoRedo`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#allowundoredo) property to enable or disable undo redo functionality in spreadsheet.
+`Undo` option helps you to undone the last action performed and `Redo` option helps you to do the same action which is reverted in the Spreadsheet. You can use the [`allowUndoRedo`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet#allowundoredo) property to enable or disable undo redo functionality in spreadsheet.
> * The default value for `allowUndoRedo` property is `true`.
@@ -19,21 +19,21 @@ By default, the `UndoRedo` module is injected internally into Spreadsheet to per
It reverses the last action you performed with Spreadsheet. Undo can be done by any of the following ways:
-* Select the undo item from HOME tab in Ribbon toolbar.
-* Use `Ctrl + Z` keyboard shortcut to perform the undo.
-* Use the [`undo`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#undo) method programmatically.
+* Select the undo item from the HOME tab in the Ribbon toolbar.
+* Use the `Ctrl + Z` keyboard shortcut.
+* Use the [`undo`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet#undo) method programmatically.
## Redo
It reverses the last undo action you performed with Spreadsheet. Redo can be done by any of the following ways:
-* Select the redo item from HOME tab in Ribbon toolbar.
-* Use `Ctrl + Y` keyboard shortcut to perform the redo.
-* Use the [`redo`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#redo) method programmatically.
+* Select the redo item from the HOME tab in the Ribbon toolbar.
+* Use the `Ctrl + Y` keyboard shortcut.
+* Use the [`redo`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet#redo) method programmatically.
## Update custom actions in UndoRedo collection
-You can update your own custom actions in UndoRedo collection, by using the [`updateUndoRedoCollection`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#updateundoredocollection) method. And also customize the undo redo operations of your custom action by using `actionComplete` event.
+You can add your own custom actions to the UndoRedo collection by using the [`updateUndoRedoCollection`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet#updateundoredocollection) method. You can also customize the undo and redo behavior of your custom action by using `actionComplete` event.
The following code example shows `How to update and customize your own actions for undo redo` functionality in the Spreadsheet control.
diff --git a/Document-Processing/Excel/Spreadsheet/Angular/worksheet.md b/Document-Processing/Excel/Spreadsheet/Angular/worksheet.md
index af57ce1a43..e81b41e399 100644
--- a/Document-Processing/Excel/Spreadsheet/Angular/worksheet.md
+++ b/Document-Processing/Excel/Spreadsheet/Angular/worksheet.md
@@ -3,7 +3,7 @@ layout: post
title: Worksheet in Angular Spreadsheet component | Syncfusion
description: Learn here all about Worksheet in Syncfusion Angular Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
-control: Worksheet
+control: Worksheet
documentation: ug
---
@@ -13,11 +13,11 @@ Worksheet is a collection of cells organized in the form of rows and columns tha
## Add sheet
-You can dynamically add or insert a sheet by one of the following ways,
+You can dynamically add or insert a sheet in one of the following ways,
-* Click the `Add Sheet` button in the sheet tab. This will add a new empty sheet next to current active sheet.
-* Right-click on the sheet tab, and then select `Insert` option from the context menu to insert a new empty sheet before the current active sheet.
-* Using [`insertSheet`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#insertsheet) method, you can insert one or more sheets at your desired index.
+* Click the `Add Sheet` button in the sheet tab. This will add a new empty sheet next to the active sheet.
+* Right-click on the sheet tab, and then select `Insert` option from the context menu to insert a new empty sheet before the active sheet.
+* Using [`insertSheet`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet#insertsheet) method, you can insert one or more sheets at the desired index.
The following code example shows the insert sheet operation in spreadsheet.
@@ -35,7 +35,7 @@ The following code example shows the insert sheet operation in spreadsheet.
### Insert a sheet programmatically and make it active sheet
-A sheet is a collection of cells organized in the form of rows and columns that allows you to store, format, and manipulate the data. Using [insertSheet](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#insertsheet) method, you can insert one or more sheets at the desired index. Then, you can make the inserted sheet as active sheet by focusing the start cell of that sheet using the [goTo](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#goto) method.
+A sheet is a collection of cells organized in the form of rows and columns that allows you to store, format, and manipulate the data. Using [insertSheet](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet#insertsheet) method, you can insert one or more sheets at the desired index. Then, you can make the inserted sheet as active sheet by focusing the start cell of that sheet using the [goTo](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet#goto) method.
The following code example shows how to insert a sheet programmatically and make it the active sheet.
@@ -53,14 +53,14 @@ The following code example shows how to insert a sheet programmatically and make
## Delete sheet
-The Spreadsheet has support for removing an existing worksheet. You can dynamically delete the existing sheet by the following way,
+The Spreadsheet has support for removing an existing worksheet. You can dynamically delete the existing sheet in the following ways,
-* Right-click on the sheet tab, and then select `Delete` option from context menu.
-* Using [`delete`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet/#delete ) method to delete the sheets.
+* Right-click on the sheet tab, and then select `Delete` option from the context menu.
+* Using [`delete`](https://ej2.syncfusion.com/angular/documentation/api/spreadsheet#delete) method to delete the sheets.
## Rename sheet
-You can dynamically rename an existing worksheet in the following way,
+You can dynamically rename an existing worksheet in the following ways,
* Right-click on the sheet tab, and then select `Rename` option from the context menu.
@@ -73,7 +73,7 @@ By default, the row and column headers are visible in worksheets. You can dynami
## Gridlines
-Gridlines act as a border like appearance of cells. They are used to distinguish cells on the worksheet. You can dynamically show or hide gridlines by using one of the following ways,
+Gridlines act as a border-like appearance of cells. They are used to distinguish cells on the worksheet. You can dynamically show or hide gridlines by using one of the following ways,
* Switch to `View` tab, and then select `Hide Gridlines` option to hide the gridlines in worksheet.
* Set `showGridLines` property in `sheets` as `true` or `false` to show or hide the gridlines at initial load. By default, the `showGridLines` property is enabled in each worksheet.
@@ -96,7 +96,7 @@ The following code example shows the headers and gridlines operation in spreadsh
Hiding a worksheet can help prevent unauthorized or accidental changes to your file.
-There are three visibility state as like Microsoft Excel,
+There are three visibility states, as in Microsoft Excel,
| State | Description |
|-------|---------|