Skip to content

Commit 100f71e

Browse files
Merge pull request #533 from Syncfusion-Content/hotfix/hotfix-v29.1.33
DOCINFRA-2341_merged_using_automation
2 parents 8f00c10 + 8121dae commit 100f71e

File tree

644 files changed

+3555
-3550
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

644 files changed

+3555
-3550
lines changed

ej2-javascript/3D-chart/js/es5-getting-started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,20 +35,20 @@ Refer the following steps for setup your local environment.
3535

3636
**Step 2:** Create **myapp/resources** folder to store local scripts and styles files.
3737

38-
**Step 3:** Create **myapp/index.js** and **myapp/index.html** files for initializing Essential JS 2 3D Chart control.
38+
**Step 3:** Create **myapp/index.js** and **myapp/index.html** files for initializing Essential<sup style="font-size:70%">&reg;</sup> JS 2 3D Chart control.
3939

40-
## Adding Syncfusion resources
40+
## Adding Syncfusion<sup style="font-size:70%">&reg;</sup> resources
4141

42-
The Essential JS 2 3D Chart control can be initialized by using either of the following ways.
42+
The Essential<sup style="font-size:70%">&reg;</sup> JS 2 3D Chart control can be initialized by using either of the following ways.
4343

4444
* Using local script.
4545
* Using CDN link for script.
4646

4747
### Using local script
4848

49-
You can get the global scripts and styles from the [Essential Studio JavaScript (Essential JS 2)](https://www.syncfusion.com/downloads/essential-js2) build installed location.
49+
You can get the global scripts and styles from the [Essential Studio<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2)](https://www.syncfusion.com/downloads/essential-js2) build installed location.
5050

51-
After installing the Essential JS 2 product build, you can copy the chart and its dependencies scripts and style file into the **resources/scripts** and **resources/styles** folder.
51+
After installing the Essential<sup style="font-size:70%">&reg;</sup> JS 2 product build, you can copy the chart and its dependencies scripts and style file into the **resources/scripts** and **resources/styles** folder.
5252

5353
Refer the below code to find location chart's script and style file.
5454

@@ -123,7 +123,7 @@ The below html code example shows the minimal dependency of chart.
123123

124124
Now, you can start adding 3D Chart control in the application. For getting started, add a **div** element for 3D Chart control in **index.html**. Then refer the **index.js** file into the **index.html** file.
125125

126-
In this document context we are going to use **ej2.min.js** which includes all the Essential JS 2 components and its dependent scripts.
126+
In this document context we are going to use **ej2.min.js** which includes all the Essential<sup style="font-size:70%">&reg;</sup> JS 2 components and its dependent scripts.
127127

128128
```html
129129
<!DOCTYPE html>

ej2-javascript/3D-chart/ts/getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ domainurl: ##DomainURL##
1111

1212
# Getting started in ##Platform_Name## 3D Chart control
1313

14-
This section explains how to create a simple 3D Chart and configure its available functionalities in TypeScript using Essential JS 2 [quickstart](https://github.com/SyncfusionExamples/ej2-quickstart-webpack) seed repository.
14+
This section explains how to create a simple 3D Chart and configure its available functionalities in TypeScript using Essential<sup style="font-size:70%">&reg;</sup> JS 2 [quickstart](https://github.com/SyncfusionExamples/ej2-quickstart-webpack) seed repository.
1515

1616
> This application is integrated with the `webpack.config.js` configuration and uses the latest version of the [webpack-cli](https://webpack.js.org/api/cli/#commands). It requires node `v14.15.0` or higher. For more information about webpack and its features, refer to the [webpack documentation](https://webpack.js.org/guides/getting-started/).
1717
@@ -31,7 +31,7 @@ Below is the list of minimum dependencies required to use the 3D Chart.
3131

3232
## Set up development environment
3333

34-
Open the command prompt from the required directory, and run the following command to clone the Syncfusion JavaScript (Essential JS 2) quickstart project from [GitHub](https://github.com/SyncfusionExamples/ej2-quickstart-webpack).
34+
Open the command prompt from the required directory, and run the following command to clone the Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2) quickstart project from [GitHub](https://github.com/SyncfusionExamples/ej2-quickstart-webpack).
3535

3636
{% tabs %}
3737
{% highlight bash tabtitle="CMD" %}
@@ -51,9 +51,9 @@ cd ej2-quickstart
5151
{% endhighlight %}
5252
{% endtabs %}
5353

54-
## Add Syncfusion JavaScript packages
54+
## Add Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript packages
5555

56-
Syncfusion JavaScript (Essential JS 2) packages are available on the [npmjs.com](https://www.npmjs.com/~syncfusionorg) public registry. You can install all Syncfusion JavaScript (Essential JS 2) controls in a single [@syncfusion/ej2](https://www.npmjs.com/package/@syncfusion/ej2) package or individual packages for each control.
56+
Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2) packages are available on the [npmjs.com](https://www.npmjs.com/~syncfusionorg) public registry. You can install all Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2) controls in a single [@syncfusion/ej2](https://www.npmjs.com/package/@syncfusion/ej2) package or individual packages for each control.
5757

5858
The quickstart application is preconfigured with the dependent [@syncfusion/ej2](https://www.npmjs.com/package/@syncfusion/ej2) package in the `~/package.json` file. Use the following command to install the dependent npm packages from the command prompt.
5959

@@ -67,7 +67,7 @@ npm install
6767

6868
## Add 3D Chart to the project
6969

70-
Open the application in Visual Studio Code and add the Syncfusion JavaScript UI controls.
70+
Open the application in Visual Studio Code and add the Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript UI controls.
7171

7272
Add the HTML div tag with its `id` attribute as `element` in your `~/src/index.html` file to initialize the 3D Chart.
7373

ej2-javascript/accumulation-chart/accessibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ The accessibility compliance of the Accumulation chart control is shown in the f
7777

7878
## See also
7979

80-
* [Accessibility in Syncfusion ##Platform_Name## controls](../common/accessibility)
80+
* [Accessibility in Syncfusion<sup style="font-size:70%">&reg;</sup> ##Platform_Name## controls](../common/accessibility)

ej2-javascript/accumulation-chart/ej1-api-migration.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ domainurl: ##DomainURL##
1111

1212
# Ej1 api migration in ##Platform_Name## Accumulation chart control
1313

14-
This article describes the API migration process of Chart component from Essential JS 1 to Essential JS 2.
14+
This article describes the API migration process of Chart component from Essential<sup style="font-size:70%">&reg;</sup> JS 1 to Essential<sup style="font-size:70%">&reg;</sup> JS 2.
1515

1616
## Accumulation Chart
1717

1818
<!-- markdownlint-disable MD033 -->
1919
<table>
2020
<tr>
2121
<td><b>Behaviour</b></td>
22-
<td><b>API in Essential JS 1</b></td>
23-
<td><b>API in Essential JS 2</b></td>
22+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 1</b></td>
23+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 2</b></td>
2424
</tr>
2525

2626
<tr>
@@ -491,8 +491,8 @@ pie.appendTo('#chart');
491491
<table>
492492
<tr>
493493
<td><b>Behaviour</b></td>
494-
<td><b>API in Essential JS 1</b></td>
495-
<td><b>API in Essential JS 2</b></td>
494+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 1</b></td>
495+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 2</b></td>
496496
</tr>
497497

498498
<tr>
@@ -762,8 +762,8 @@ chart.appendTo('#chart');
762762
<table>
763763
<tr>
764764
<td><b>Behaviour</b></td>
765-
<td><b>API in Essential JS 1</b></td>
766-
<td><b>API in Essential JS 2</b></td>
765+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 1</b></td>
766+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 2</b></td>
767767
</tr>
768768

769769
<tr>
@@ -1594,8 +1594,8 @@ chart.appendTo('#chart);
15941594
<table>
15951595
<tr>
15961596
<td><b>Behaviour</b></td>
1597-
<td><b>API in Essential JS 1</b></td>
1598-
<td><b>API in Essential JS 2</b></td>
1597+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 1</b></td>
1598+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 2</b></td>
15991599
</tr>
16001600

16011601
<tr>
@@ -1849,8 +1849,8 @@ chart.appendTo('#chart);
18491849
<table>
18501850
<tr>
18511851
<td><b>Behaviour</b></td>
1852-
<td><b>API in Essential JS 1</b></td>
1853-
<td><b>API in Essential JS 2</b></td>
1852+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 1</b></td>
1853+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 2</b></td>
18541854
</tr>
18551855

18561856
<tr>
@@ -2356,8 +2356,8 @@ Not applicable
23562356
<table>
23572357
<tr>
23582358
<td><b>Behaviour</b></td>
2359-
<td><b>API in Essential JS 1</b></td>
2360-
<td><b>API in Essential JS 2</b></td>
2359+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 1</b></td>
2360+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 2</b></td>
23612361
</tr>
23622362

23632363
<tr>
@@ -2509,8 +2509,8 @@ chart.removeSeries();
25092509
<table>
25102510
<tr>
25112511
<td><b>Behaviour</b></td>
2512-
<td><b>API in Essential JS 1</b></td>
2513-
<td><b>API in Essential JS 2</b></td>
2512+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 1</b></td>
2513+
<td><b>API in Essential<sup style="font-size:70%">&reg;</sup> JS 2</b></td>
25142514
</tr>
25152515

25162516
<tr>

ej2-javascript/accumulation-chart/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ The list of minimum dependencies required to use an accumulation chart are follo
3030

3131
## Installation and Configuration
3232

33-
* To get started with accumulation chart component, clone the [`Essential JS 2 quickstart`](https://github.com/syncfusion/ej2-quickstart.git) project, and install necessary packages by using the following commands:
33+
* To get started with accumulation chart component, clone the [Essential<sup style="font-size:70%">&reg;</sup> JS 2 quickstart](https://github.com/syncfusion/ej2-quickstart.git) project, and install necessary packages by using the following commands:
3434

3535
```
3636
git clone https://github.com/syncfusion/ej2-quickstart.git quickstart
@@ -72,7 +72,7 @@ System.config({
7272
```
7373

7474
> The [project](https://github.com/syncfusion/ej2-quickstart.git) is preconfigured with common settings
75-
(`src/styles/styles.css, system.config.js`) to start with all Essential JS 2 components.
75+
(`src/styles/styles.css, system.config.js`) to start with all Essential<sup style="font-size:70%">&reg;</sup> JS 2 components.
7676
7777
## Add Accumulation Chart to the Project
7878

ej2-javascript/accumulation-chart/js/es5-getting-started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,20 +36,20 @@ Refer the following steps for setup your local environment.
3636

3737
**Step 2:** Create **myapp/resources** folder to store local scripts and styles files.
3838

39-
**Step 3:** Create **myapp/index.js** and **myapp/index.html** files for initializing Essential JS 2 Accumulation Chart control.
39+
**Step 3:** Create **myapp/index.js** and **myapp/index.html** files for initializing Essential<sup style="font-size:70%">&reg;</sup> JS 2 Accumulation Chart control.
4040

41-
## Adding Syncfusion resources
41+
## Adding Syncfusion<sup style="font-size:70%">&reg;</sup> resources
4242

43-
The Essential JS 2 Accumulation Chart control can be initialized by using either of the following ways.
43+
The Essential<sup style="font-size:70%">&reg;</sup> JS 2 Accumulation Chart control can be initialized by using either of the following ways.
4444

4545
* Using local script.
4646
* Using CDN link for script.
4747

4848
### Using local script
4949

50-
You can get the global scripts and styles from the [Essential Studio JavaScript (Essential JS 2)](https://www.syncfusion.com/downloads/essential-js2) build installed location.
50+
You can get the global scripts and styles from the [Essential Studio<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2)](https://www.syncfusion.com/downloads/essential-js2) build installed location.
5151

52-
After installing the Essential JS 2 product build, you can copy the chart and its dependencies scripts and style file into the **resources/scripts** and **resources/styles** folder.
52+
After installing the Essential<sup style="font-size:70%">&reg;</sup> JS 2 product build, you can copy the chart and its dependencies scripts and style file into the **resources/scripts** and **resources/styles** folder.
5353

5454
Refer the below code to find location accumulation chart's script and style file.
5555

@@ -124,7 +124,7 @@ The below html code example shows the minimal dependency of chart.
124124

125125
Now, you can start adding accumulation chart control in the application. For getting started, add a **div** element for Chart control in **index.html**. Then refer the **index.js** file into the **index.html** file.
126126

127-
In this document context we are going to use **ej2.min.js** which includes all the Essential JS 2 components and its dependent scripts.
127+
In this document context we are going to use **ej2.min.js** which includes all the Essential<sup style="font-size:70%">&reg;</sup> JS 2 components and its dependent scripts.
128128

129129
```html
130130
<!DOCTYPE html>

ej2-javascript/accumulation-chart/ts/getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ domainurl: ##DomainURL##
1212

1313
# Getting started in ##Platform_Name## Accumulation chart control
1414

15-
This article provides a step-by-step guide to configuring the Syncfusion JavaScript (Essential JS 2) library and building a simple JavaScript web application using the GitHub [quickstart](https://github.com/SyncfusionExamples/ej2-quickstart-webpack-) seed repository.
15+
This article provides a step-by-step guide to configuring the Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2) library and building a simple JavaScript web application using the GitHub [quickstart](https://github.com/SyncfusionExamples/ej2-quickstart-webpack-) seed repository.
1616

1717
> This application is integrated with the `webpack.config.js` configuration and uses the latest version of the [webpack-cli](https://webpack.js.org/api/cli/#commands). It requires node `v14.15.0` or higher. For more information about webpack and its features, refer to the [webpack documentation](https://webpack.js.org/guides/getting-started/).
1818
@@ -32,7 +32,7 @@ The list of minimum dependencies required to use an accumulation chart are follo
3232

3333
## Set up development environment
3434

35-
Open the command prompt from the required directory, and run the following command to clone the Syncfusion JavaScript (Essential JS 2) quickstart project from [GitHub](https://github.com/SyncfusionExamples/ej2-quickstart-webpack-).
35+
Open the command prompt from the required directory, and run the following command to clone the Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2) quickstart project from [GitHub](https://github.com/SyncfusionExamples/ej2-quickstart-webpack-).
3636

3737
{% tabs %}
3838
{% highlight bash tabtitle="CMD" %}
@@ -52,9 +52,9 @@ cd ej2-quickstart
5252
{% endhighlight %}
5353
{% endtabs %}
5454

55-
## Add Syncfusion JavaScript packages
55+
## Add Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript packages
5656

57-
Syncfusion JavaScript (Essential JS 2) packages are available on the [npmjs.com](https://www.npmjs.com/~syncfusionorg) public registry. You can install all Syncfusion JavaScript (Essential JS 2) controls in a single [@syncfusion/ej2](https://www.npmjs.com/package/@syncfusion/ej2) package or individual packages for each control.
57+
Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2) packages are available on the [npmjs.com](https://www.npmjs.com/~syncfusionorg) public registry. You can install all Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2) controls in a single [@syncfusion/ej2](https://www.npmjs.com/package/@syncfusion/ej2) package or individual packages for each control.
5858

5959
The quickstart application is preconfigured with the dependent [@syncfusion/ej2](https://www.npmjs.com/package/@syncfusion/ej2) package in the `~/package.json` file. Use the following command to install the dependent npm packages from the command prompt.
6060

@@ -68,7 +68,7 @@ npm install
6868

6969
## Add Accumulation Chart to the Project
7070

71-
Open the application in Visual Studio Code and add the Syncfusion JavaScript UI controls.
71+
Open the application in Visual Studio Code and add the Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript UI controls.
7272

7373
Add the HTML div tag with its `id` attribute as `element` in your `~/src/index.html` file to initialize the Accumulation chart.
7474

ej2-javascript/ai-assistview/accessibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ The AI AssistView control's accessibility levels are ensured through an [accessi
7474

7575
## See also
7676

77-
* [Accessibility in Syncfusion controls](../common/accessibility)
77+
* [Accessibility in Syncfusion<sup style="font-size:70%">&reg;</sup> controls](../common/accessibility)

ej2-javascript/ai-assistview/js/es5-getting-started.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ domainurl: ##DomainURL##
1111

1212
# Es5 getting started in ##Platform_Name## AI AssistView control
1313

14-
The Essential JS 2 for JavaScript (global script) is an ES5 formatted pure JavaScript framework which can be directly used in latest web browsers.
14+
The Essential<sup style="font-size:70%">&reg;</sup> JS 2 for JavaScript (global script) is an ES5 formatted pure JavaScript framework which can be directly used in latest web browsers.
1515

1616
## Dependencies
1717

@@ -35,7 +35,7 @@ The JavaScript (ES5) AI AssistView control can be initialized by using either of
3535

3636
**Step 1:** Create an app folder `quickstart` for getting started.
3737

38-
**Step 2:** You can get the global scripts and styles from the [Essential Studio JavaScript (Essential JS 2)](https://www.syncfusion.com/downloads/essential-js2) build installed location.
38+
**Step 2:** You can get the global scripts and styles from the [Essential Studio<sup style="font-size:70%">&reg;</sup> JavaScript (Essential<sup style="font-size:70%">&reg;</sup> JS 2)](https://www.syncfusion.com/downloads/essential-js2) build installed location.
3939

4040
**Syntax:**
4141
> Dependency Script: `**(installed location)**\Syncfusion\Essential Studio\JavaScript - EJ2\{RELEASE_VERSION}\Web (Essential JS 2)\JavaScript\{DEPENDENCY_PACKAGE_NAME}\dist\global\{DEPENDENCY_PACKAGE_NAME}.min.js`
@@ -56,7 +56,7 @@ The JavaScript (ES5) AI AssistView control can be initialized by using either of
5656
>
5757
> Control Styles: `C:\Program Files (x86)\Syncfusion\Essential Studio\JavaScript - EJ2\16.3.0.17\Web (Essential JS 2)\JavaScript\ej2-interactive-chat\styles\material.css`
5858
59-
The below located script and style file contains all Syncfusion JavaScript (ES5) UI control resources in a single file.
59+
The below located script and style file contains all Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (ES5) UI control resources in a single file.
6060

6161
> Scripts: `**(installed location)**\Syncfusion\Essential Studio\JavaScript - EJ2\{RELEASE_VERSION}\Web (Essential JS 2)\JavaScript\ej2\dist\ej2.min.js`
6262
>
@@ -66,7 +66,7 @@ The [`Custom Resource Generator (CRG)`](https://crg.syncfusion.com/) is an onlin
6666

6767
**Step 3:** Create a folder `~/quickstart/resources` and copy/paste the global scripts and styles from the above installed location to `~/quickstart/resources/package` corresponding package location.
6868

69-
**Step 4:** Create a HTML page (index.html) in `~/quickstart/index.html` location and add the Essentials JS 2 script and style references.
69+
**Step 4:** Create a HTML page (index.html) in `~/quickstart/index.html` location and add the Essential<sup style="font-size:70%">&reg;</sup> JS 2 script and style references.
7070

7171
```html
7272
<!DOCTYPE html>
@@ -149,7 +149,7 @@ The [`Custom Resource Generator (CRG)`](https://crg.syncfusion.com/) is an onlin
149149
</html>
150150
```
151151

152-
**Step 6:** Now, run the `index.html` in web browser, it will render the **Syncfusion JavaScript (ES5) AI AssistView** control.
152+
**Step 6:** Now, run the `index.html` in web browser, it will render the **Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript (ES5) AI AssistView** control.
153153

154154
## Using CDN link for script and style reference
155155

@@ -181,7 +181,7 @@ The [`Custom Resource Generator (CRG)`](https://crg.syncfusion.com/) is an onlin
181181

182182
{% previewsample "page.domainurl/code-snippet/ai-assistview/gettingstarted" %}
183183

184-
**Step 4:** Now, run the `index.html` in web browser, it will render the `Syncfusion JavaScript AI AssistView` control.
184+
**Step 4:** Now, run the `index.html` in web browser, it will render the **Syncfusion<sup style="font-size:70%">&reg;</sup> JavaScript AI AssistView** control.
185185

186186
## Configure suggestions and responses
187187

0 commit comments

Comments
 (0)