Skip to content

Commit a1f43b4

Browse files
Merge pull request #98 from Syncfusion-Content/hotfix/hotfix-v20.1.0.55
DOCINFRA-2341_merged_using_automation
2 parents ea21846 + 2c81325 commit a1f43b4

File tree

4 files changed

+29
-29
lines changed

4 files changed

+29
-29
lines changed

ReactJS/Chart/Printing.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Print in Essential JavaScript Chart
4-
description: Learn how to print the chart.
3+
title: Printing in ReactJS Chart Control | Syncfusion
4+
description: Learn here about printing support in Syncfusion Essential ReactJS Chart Control, its elements, features, and more.
55
platform: js
66
control: Chart
77
documentation: ug
88
api : /api/js/ejchart
99
---
1010

11-
# Printing Chart
11+
# Printing in ReactJS Chart
1212
The rendered chart can be printed directly from the browser by calling the public method [`print`](../api/ejchart#methods:print). ID of the chart div element must be passed as argument to that method.
1313

1414
{% highlight html %}
@@ -40,7 +40,7 @@ ReactDOM.render(
4040

4141
This print method can be called by performing any action on the web page. For example, by clicking a button. While calling the print method in chart, print preview will be displayed in the browser.
4242

43-
![](/js/Chart/Printing_images/Printing_img1.png)
43+
![ReactJS Chart printing](Printing_images/Printing_img1.png)
4444

4545
[Click](http://js.syncfusion.com/demos/web/#!/bootstrap/chart/exportandprint) here to view the Printing chart online demo sample
4646

@@ -78,7 +78,7 @@ function print() {
7878

7979
The Print preview of multiple Charts is shown below
8080

81-
![](/js/Chart/Printing_images/Printing_img2.png)
81+
![ReactJS Chart Printing Multiple chart](Printing_images/Printing_img2.png)
8282

8383
## Page Setup
8484

ReactJS/Chart/Trendlines.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Trendlines in Essential JavaScript Chart
4-
description: What are the different types of trendlines available in chart.
3+
title: Trendlines in ReactJS Chart Control | Syncfusion
4+
description: Learn here about Trendlines support in Syncfusion Essential ReactJS Chart Control, its elements, and more.
55
platform: js
66
control: Chart
77
documentation: ug
88
api : /api/js/ejchart
99
---
1010

11-
# Trendlines
11+
# Trendlines in ReactJS Chart
1212

1313
EjChart can generate Trendlines for Cartesian type series *(Line, Column, Scatter, Area, Candle, HiLo etc.)* except bar type series. You can add more than one trendline object to the [`trendlines`](../api/ejchart#members:series-trendlines) option.
1414

@@ -35,7 +35,7 @@ EjChart can generate Trendlines for Cartesian type series *(Line, Column, Scatte
3535

3636
{% endhighlight %}
3737

38-
![](/js/Chart/Trendlines_images/Trendlines_img1.png)
38+
![ReactJS Chart Trendlines](Trendlines_images/Trendlines_img1.png)
3939

4040

4141
[Click](http://js.syncfusion.com/demos/web/#!/azure/chart/trendlines) here to view the Trendlines online demo sample.
@@ -69,7 +69,7 @@ A trendline can be customized by using the properties such as [`fill`](../api/ej
6969

7070
{% endhighlight %}
7171

72-
![](/js/Chart/Trendlines_images/Trendlines_img2.png)
72+
![ReactJS Chart Customize the trendline styles](Trendlines_images/Trendlines_img2.png)
7373

7474

7575

@@ -111,7 +111,7 @@ To render Linear Trendline, you have to set the [`type`](../api/ejchart#members:
111111

112112
{% endhighlight %}
113113

114-
![](/js/Chart/Trendlines_images/Trendlines_img3.png)
114+
![ReactJS Chart Linear Trendline](Trendlines_images/Trendlines_img3.png)
115115

116116

117117
### Exponential
@@ -141,7 +141,7 @@ Exponential Trendline can be rendered by setting the [`type`](../api/ejchart#mem
141141

142142
{% endhighlight %}
143143

144-
![](/js/Chart/Trendlines_images/Trendlines_img4.png)
144+
![ReactJS Chart Exponential](Trendlines_images/Trendlines_img4.png)
145145

146146

147147
### Logarithmic
@@ -171,7 +171,7 @@ Logarithmic Trendline can be rendered by setting the [`type`](../api/ejchart#mem
171171

172172
{% endhighlight %}
173173

174-
![](/js/Chart/Trendlines_images/Trendlines_img5.png)
174+
![ReactJS Chart Logarithmic](Trendlines_images/Trendlines_img5.png)
175175

176176

177177
### Power
@@ -201,7 +201,7 @@ Power Trendline can be rendered by setting the [`type`](../api/ejchart#members:s
201201

202202
{% endhighlight %}
203203

204-
![](/js/Chart/Trendlines_images/Trendlines_img6.png)
204+
![ReactJS Chart Trendlines Power](Trendlines_images/Trendlines_img6.png)
205205

206206

207207
### Polynomial
@@ -231,7 +231,7 @@ Polynomial Trendline can be rendered by setting the trendline [`type`](../api/ej
231231

232232
{% endhighlight %}
233233

234-
![](/js/Chart/Trendlines_images/Trendlines_img7.png)
234+
![ReactJS Chart Polynomial](Trendlines_images/Trendlines_img7.png)
235235

236236

237237

@@ -262,7 +262,7 @@ MovingAverage Trendline can be rendered by setting the [`type`](../api/ejchart#m
262262

263263
{% endhighlight %}
264264

265-
![](/js/Chart/Trendlines_images/Trendlines_img8.png)
265+
![ReactJS Chart MovingAverage](Trendlines_images/Trendlines_img8.png)
266266

267267
## Forecasting
268268

@@ -299,7 +299,7 @@ The value set for [`forwardForecast`](../api/ejchart#members:series-trendlines-f
299299

300300
{% endhighlight %}
301301

302-
![](/js/Chart/Trendlines_images/Trendlines_img9.png)
302+
![ReactJS Chart Forward Forecasting](Trendlines_images/Trendlines_img9.png)
303303

304304

305305

@@ -331,7 +331,7 @@ The value set for the [`backwardForecast`](../api/ejchart#members:series-trendli
331331

332332
{% endhighlight %}
333333

334-
![](/js/Chart/Trendlines_images/Trendlines_img10.png)
334+
![ReactJS Chart Backward Forecasting](Trendlines_images/Trendlines_img10.png)
335335

336336

337337
## Trendlines Legend
@@ -362,4 +362,4 @@ To display the legend item for trendline, use the [`name`](../api/ejchart#member
362362

363363
{% endhighlight %}
364364

365-
![](/js/Chart/Trendlines_images/Trendlines_img11.png)
365+
![ReactJS Chart Trendlines Legend](Trendlines_images/Trendlines_img11.png)

ReactJS/NavigationDrawer/getting-started.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
3-
title: Syncfusion Navigation Drawer Getting Started
4-
description: getting started
3+
title: Getting Started with ReactJS Navigation Drawer Control | Syncfusion
4+
description: Learn here about getting started with Syncfusion Essential ReactJS Navigation Drawer Control, its elements, and more.
55
platform: reactjs
66
control: navigation drawer
77
documentation: ug
88
---
99

10-
# Getting Started
10+
# Getting Started with ReactJS Navigation Drawer
1111

1212
This section helps to get started with Essential ReactJS Navigation Drawer component.
1313

ReactJS/Ribbon/Application-Tab.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
3-
title: Ribbon-Application-Tab
4-
description: application tab
3+
title: Application Tab in ReactJS Ribbon Control | Syncfusion
4+
description: Learn here about application tab in Syncfusion Essential ReactJS Ribbon Control, its element, and more.
55
documentation: ug
6-
platform: React JS
6+
platform: ReactJS
77
keywords: application tab,ribbon application tab
88
---
99

10-
# Application Tab
10+
# Application Tab in ReactJS Ribbon
1111

1212
The Application Tab is used to represent a `Menu` that do some operations, such as File menu to create, open, and print documents. Application Tab classified by `type` property with the following:
1313

@@ -59,7 +59,7 @@ Set the UL element `id` to `menuItemID` property to create Application Menu and
5959

6060
{% endhighlight %}
6161

62-
![](/js/Ribbon/Application-Tab_images/Application-Tab_img1.png)
62+
![ReactJS Ribbon Application Menu](Application-Tab_images/Application-Tab_img1.png)
6363

6464
## Backstage Page
6565

@@ -170,8 +170,8 @@ To render the Ribbon with the Backstage page, refer to the following code snippe
170170
{% endhighlight %}
171171

172172

173-
![](/js/Ribbon/Application-Tab_images/Application-Tab_img3.png)
173+
![ReactJS Ribbon Backstage Page](Application-Tab_images/Application-Tab_img3.png)
174174

175175
N> Height & width of backstage can be set using `height` and `width`, if these are not set, Ribbon’s height & width will be considered.
176176

177-
You can add/remove/update backStage item to the ribbon control by using [`addBackStageItem`](https://help.syncfusion.com/api/js/ejribbon#methods:addbackstageitem), [`removeBackStageItem`](https://help.syncfusion.com/api/js/ejribbon#methods:removebackstageitem) and [`updateBackStageItem`](https://help.syncfusion.com/api/js/ejribbon#methods:updatebackstageitem) methods. Also you can show/hide the backstage page in ribbon control by using [`showBackstage`](https://help.syncfusion.com/api/js/ejribbon#methods:showbackstage) and [`hideBackstage`](https://help.syncfusion.com/api/js/ejribbon#methods:hidebackstage methods.
177+
You can add/remove/update backStage item to the ribbon control by using [`addBackStageItem`](https://help.syncfusion.com/api/js/ejribbon#methods:addbackstageitem), [`removeBackStageItem`](https://help.syncfusion.com/api/js/ejribbon#methods:removebackstageitem) and [`updateBackStageItem`](https://help.syncfusion.com/api/js/ejribbon#methods:updatebackstageitem) methods. Also you can show/hide the backstage page in ribbon control by using [`showBackstage`](https://help.syncfusion.com/api/js/ejribbon#methods:showbackstage) and [`hideBackstage`](https://help.syncfusion.com/api/js/ejribbon#methods:hidebackstage) methods.

0 commit comments

Comments
 (0)