Skip to content

Commit 65c7ea8

Browse files
Merge pull request #205 from syncfusion-content/SEO-2971-Angular-Controls
SEO-2971 - Angular Controls image alt text
2 parents cf561d6 + a43a5ae commit 65c7ea8

File tree

5 files changed

+42
-42
lines changed

5 files changed

+42
-42
lines changed

angular/Chart/Exporting.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
3-
title: Exporting options in Essential Angular Chart
4-
description: Learn how to export Chart as excel file or image.
3+
title: Exporting in Angular Chart Control | Syncfusion
4+
description: Learn here all about Exporting support in Syncfusion Essential Angular Chart control, its elements, and more.
55
platform: Angular
66
control: Chart
77
documentation: ug
88
---
99

10-
# Exporting Chart
10+
# Exporting Chart in Essential Angular Chart
1111

1212
Exporting a chart can be done in both client-side and in server-side. This can be modified by setting values to the property "mode" in exporting. Default value for mode is client.
1313

@@ -194,7 +194,7 @@ public void ExportChart(string Data, string ChartModel)
194194

195195
Excel exporting is a server-side operation. In addition have to refer Syncfusion.XlsIO assembly to export as excel.
196196

197-
![](Exporting_images/Exporting_img1.png)
197+
![Excel Exporting in Angular Chart](Exporting_images/Exporting_img1.png)
198198

199199
#### Multiple chart excel exporting
200200

@@ -260,7 +260,7 @@ Export multiple chart to excel at server-side
260260

261261
{% endhighlight %}
262262

263-
![](Exporting_images/Exporting_img2.png)
263+
![Multiple Excel Exporting in Angular Chart](Exporting_images/Exporting_img2.png)
264264

265265
## Naming the exported file
266266

@@ -279,7 +279,7 @@ We can also rotate the chart and can export it. Possible angles of rotation are
279279
280280
{% endhighlight %}
281281

282-
![](Exporting_images/Exporting_img3.png)
282+
![Rotating the Chart in Angular](Exporting_images/Exporting_img3.png)
283283

284284
## Setting orientation for the document
285285

angular/GettingStarted/getting-started-with-webpack-aot.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
layout: post
3-
title: Getting started with Webpack Ahead-of-Time Configuration
4-
description: Overview of Syncfusion Essential Angular.
3+
title: Getting started with Webpack in Angular Application | Syncfusion
4+
description: Learn here all about Getting started with Webpack Ahead-of-Time Configuration in Syncfusion Essential Angular Chart control, its elements, and more.
55
platform: Angular
66
control: Introduction
77
documentation: ug
88
---
99

1010

11-
# Getting started with Webpack Ahead-of-Time Configuration
11+
# Getting started with Webpack in Angular Application
1212

1313
To quick start with Syncfusion JavaScript Angular components run the below commands to clone the repository for [Webpack starter](https://github.com/syncfusion/angular2-seeds) and installing required dependency packages.
1414

@@ -68,13 +68,13 @@ The below steps depicts the configuration of `@ngtools/webpack` in Angular appli
6868

6969
### Options for AngularCompilerPlugin
7070

71-
* Add instance of [AngularCompilerPlugin](https://github.com/angular/angular-cli/tree/master/packages/%40ngtools/webpack), which has an apply property. This apply property is called by the webpack compiler, giving access to the entire compilation life cycle. Add options `tsConfigPath` and `entryModule` with `AngularCompilerPlugin` instance.
71+
* Add instance of [AngularCompilerPlugin](https://github.com/angular/angular-cli/tree/main/packages/ngtools/webpack), which has an apply property. This apply property is called by the webpack compiler, giving access to the entire compilation life cycle. Add options `tsConfigPath` and `entryModule` with `AngularCompilerPlugin` instance.
7272

7373
* `tsConfigPath` - The path to the `tsconfig.json` file. In your `tsconfig.json`, you can pass options to the Angular Compiler with `angularCompilerOptions`.
7474

7575
* `entryModule` - Optional if specified in `angularCompilerOptions`. The path and classname of the main application module. This follows the format `path/to/file#ClassName`.
7676

77-
N> To know more about Options in AOT refer [here](https://github.com/angular/angular-cli/tree/master/packages/%40ngtools/webpack)
77+
N> To know more about Options in AOT refer [here](https://github.com/angular/angular-cli/tree/main/packages/ngtools/webpack)
7878

7979
Refer to the below AOT configuration code snippet for `config/webpack.dev.js` file.
8080

@@ -652,10 +652,10 @@ export const rootRouterConfig: Routes = [
652652

653653
## Running the application
654654

655-
* Now run the application with below command and navigate to [http://localhost:3000/](http://localhost:3000/) to see the output window.
655+
* Now run the application with below command and navigate to [http://localhost:3000/](https://locall.host/3000/) to see the output window.
656656

657657
{% highlight javascript %}
658658
npm start
659659
{% endhighlight %}
660660

661-
![](/angular/GettingStarted/Images/aotoutput.png)
661+
![Running the Application in Angular Chart ](GettingStarted/Images/aotoutput.png)

angular/Grid/Grouping.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
3-
title: Grouping with Grid widget for Syncfusion Essential Angular-2
4-
description: How to enable grouping and its functionalities
3+
title: Grouping in Angular Grid Control | Syncfusion
4+
description: Learn here all about Grouping support in Syncfusion Essential Angular Grid control, its elements, and more.
55
platform: Angular
66
control: Grid
77
documentation: ug
88
api: /api/Angular/grid
99
---
10-
# Grouping
10+
# Grouping in Essential Angular Grid
1111

1212
The Grid control has options to group the records based on the required column. When grouping is applied, grouped records are organized into a hierarchical structure to facilitate easier expand and collapse of records. To enable grouping, set [`allowGrouping`](https://help.syncfusion.com/api/angular/ejgrid#members:allowgrouping "allowGrouping") property as `true`.
1313

@@ -49,7 +49,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
4949

5050
The following output is displayed as a result of the above code example.
5151

52-
![](Grouping_images/Grouping_img1.png)
52+
![Angular Grid grouping](Grouping_images/Grouping_img1.png)
5353

5454

5555
## Initial Grouping
@@ -94,7 +94,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
9494

9595
The following output is displayed as a result of the above code example.
9696

97-
![](Grouping_images/Grouping_img2.png)
97+
![Angular Grid initial grouping](Grouping_images/Grouping_img2.png)
9898

9999

100100
## Multi-Column Grouping
@@ -139,7 +139,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
139139

140140
The following output is displayed as a result of the above code example.
141141

142-
![](Grouping_images/Grouping_img3.png)
142+
![Angular Grid multi column grouping](Grouping_images/Grouping_img3.png)
143143

144144

145145
## Group buttons
@@ -184,7 +184,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
184184

185185
The following output is displayed as a result of the above code example.
186186

187-
![](Grouping_images/Grouping_img4.png)
187+
![Angular Grid group buttons](Grouping_images/Grouping_img4.png)
188188

189189

190190
## Hide Ungroup button
@@ -229,7 +229,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
229229

230230
The following output is displayed as a result of the above code example.
231231

232-
![](Grouping_images/Grouping_img5.png)
232+
![Angular Grid hide ungroup button](Grouping_images/Grouping_img5.png)
233233

234234

235235
## Hide Grouped Column
@@ -274,7 +274,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
274274

275275
The following output is displayed as a result of the above code example.
276276

277-
![](Grouping_images/Grouping_img6.png)
277+
![Angular Grid hide grouped column](Grouping_images/Grouping_img6.png)
278278

279279

280280
## AutoSize Drop Area
@@ -319,7 +319,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
319319

320320
The following output is displayed as a result of the above code example.
321321

322-
![](Grouping_images/Grouping_img7.png)
322+
![Angular Grid size drop area](Grouping_images/Grouping_img7.png)
323323

324324

325325
## Hide Drop area
@@ -364,7 +364,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
364364

365365
The following output is displayed as a result of the above code example.
366366

367-
![](Grouping_images/Grouping_img8.png)
367+
![Angular Grid hide drop area](Grouping_images/Grouping_img8.png)
368368

369369

370370
## Group Caption Format / Group Caption Template
@@ -420,9 +420,9 @@ import {Component, ViewEncapsulation} from '@angular/core';
420420

421421
The following output is displayed as a result of the above code example.
422422

423-
![](Grouping_images/Grouping_img9.png)
423+
![Angular Grid group Caption Format](Grouping_images/Grouping_img9.png)
424424

425-
![](Grouping_images/Grouping_img10.png)
425+
![Angular Grid group caption template](Grouping_images/Grouping_img10.png)
426426

427427
## Handling grouped records count in server-side
428428

@@ -505,4 +505,4 @@ import {Component, ViewEncapsulation} from '@angular/core';
505505

506506
The following output is displayed as a result of the above code example.
507507

508-
![](Grouping_images/Grouping_img11.png)
508+
![Angular Grid handling grouped records count in server side](Grouping_images/Grouping_img11.png)

angular/Grid/Search.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
3-
title: Searching with Grid widget for Syncfusion Essential Angular-2
4-
description: How to enable search opition and its functionalities
3+
title: Searching in Angular Grid Control | Syncfusion
4+
description: Learn here all about Searching support in Syncfusion Essential Angular Grid control, its elements, and more.
55
platform: Angular
66
control: Grid
77
documentation: ug
88
api: /api/Angular/grid
99
---
10-
# Searching
10+
# Searching in Essential Angular Grid
1111

1212
The grid has an option to search its content using the JavaScript method [`search`](https://help.syncfusion.com/api/angular/ejgrid#methods:search "search") with search key as parameter. Also, it provides an option to integrate Search text box in grid toolbar, by adding `search` toolbar item in [`toolbarSetting.toolbarItems`](https://help.syncfusion.com/api/angular/ejgrid#members:toolbarsettings-toolbaritems "toolbarSetting.toolbarItems") property.
1313

@@ -49,7 +49,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
4949

5050
The following output is displayed as a result of the above code example.
5151

52-
![](searching_images/searching_img1.png)
52+
![Angular Grid searching](searching_images/searching_img1.png)
5353

5454

5555
## Initial Searching
@@ -98,7 +98,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
9898

9999
The following output is displayed as a result of the above code example.
100100

101-
![](searching_images/searching_img2.png)
101+
![Angular Grid initial searching](searching_images/searching_img2.png)
102102

103103

104104
List of supported operators in searching.

angular/Grid/Sorting.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
layout: post
3-
title: Sorting with Grid widget for Syncfusion Essential JS
4-
description: How to enable sorting and its functionalities
5-
platform: js
3+
title: Sorting in Angular Grid Control | Syncfusion
4+
description: Learn here all about Sorting support in Syncfusion Essential Angular Grid control, its elements, and more.
5+
platform: Angular
66
control: Grid
77
documentation: ug
88
api: /api/js/ejgrid
99
---
10-
# Sorting
10+
# Sorting in Essential Angular Grid
1111

1212
The Grid control has support to sort data bound columns in ascending or descending order. This can be achieved by setting [`allowSorting`](https://help.syncfusion.com/api/angular/ejgrid#members:allowsorting "allowSorting") property as `true`.
1313

@@ -45,12 +45,12 @@ export class AppComponent {
4545

4646
The following output is displayed as a result of the above code example.
4747

48-
![](sorting_images/sorting_img1.png)
48+
![Angular Grid sorting](sorting_images/sorting_img1.png)
4949

5050

5151
## Initial Sorting
5252

53-
Through `sortedColumns` property of [`sortSettings`](https://help.syncfusion.com/api/angular/ejgrid#members:sortsettings "sortSettings"), you can sort the columns while initializing the grid itself. You need to specify the [`field`](https://help.syncfusion.com/api/angular/grid#members:sortsettings-sortedcolumns-field "field") (column) name and [`direction`](https://help.syncfusion.com/api/angular/grid#members:sortsettings-sortedcolumns-direction "direction") in the `sortedColumns`.
53+
Through `sortedColumns` property of [`sortSettings`](https://help.syncfusion.com/api/angular/ejgrid#members:sortsettings "sortSettings"), you can sort the columns while initializing the grid itself. You need to specify the [`field`](https://help.syncfusion.com/api/angular/ejgrid#members:sortsettings-sortedcolumns-field "field") (column) name and [`direction`](https://help.syncfusion.com/api/angular/ejgrid#members:sortsettings-sortedcolumns-direction "direction") in the `sortedColumns`.
5454

5555
N> 1. For [`direction`](https://help.syncfusion.com/api/angular/ejgrid#members:sortsettings-sortedcolumns-direction "direction") property you can assign either `string` value ("descending") or `enum` value (`ej.sortOrder.Descending`).
5656
N> 2. You can add multiple columns in `sortedColumns` for multi column sorting while initializing the grid itself.
@@ -89,7 +89,7 @@ export class AppComponent {
8989

9090
The following output is displayed as a result of the above code example.
9191

92-
![](sorting_images/sorting_img2.png)
92+
![Angular Grid initial sorting](sorting_images/sorting_img2.png)
9393

9494

9595
## Multi-Column Sorting
@@ -135,7 +135,7 @@ export class AppComponent {
135135

136136
The following output is displayed as a result of the above code example.
137137

138-
![](sorting_images/sorting_img3.png)
138+
![Angular Grid multi column sorting](sorting_images/sorting_img3.png)
139139

140140

141141
## Stable sorting
@@ -184,7 +184,7 @@ export class AppComponent {
184184

185185
The following output is displayed as a result of the above code example.
186186

187-
![](sorting_images/sorting_img4.png)
187+
![Angular Grid stable sorting](sorting_images/sorting_img4.png)
188188

189189

190190
## Touch options
@@ -227,6 +227,6 @@ export class AppComponent {
227227

228228
The following output is displayed as a result of the above code example.
229229

230-
![](sorting_images/sorting_img5.png)
230+
![Angular Grid touch options](sorting_images/sorting_img5.png)
231231

232232
N> To get the sorted data of the grid after sorting a column you can refer the [`How To`](https://help.syncfusion.com/angular/grid/how-to "Getting Datasource of Grid in Sorted Order").

0 commit comments

Comments
 (0)