Skip to content

Commit 8ed004f

Browse files
Merge pull request #116 from Syncfusion-Content/hotfix/hotfix-v20.1.0.55
DOCINFRA-2341_merged_using_automation
2 parents a4030ef + 86d07ba commit 8ed004f

File tree

2 files changed

+34
-34
lines changed

2 files changed

+34
-34
lines changed

angularjs/Diagram/Connector.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
layout: post
3-
title: Draw a line connecting two points, nodes or ports
4-
description: How to draw a line to connect points, nodes, or ports?
3+
title: Connector in AngularJS Diagram Control | Syncfusion
4+
description: How to draw a line to connect points, nodes, or ports in Syncfusion Essential AngularJS Diagram Control, its elements, and more.
55
platform: AngularJS
66
control: Diagram
77
documentation: ug
88
---
99

10-
# Connector
10+
# Connector in AngularJS Diagram
1111

1212
Connectors are objects used to create link between two points, nodes or ports to represent the relationships between them.
1313

14-
![](/angularjs/Diagram/Connector_images/Connector_img1.png)
14+
![AngularJS Diagram Connector](Connector_images/Connector_img1.png)
1515

1616
## Create Connector
1717

@@ -59,7 +59,7 @@ syncApp.controller('diagramCtrl', function($scope) {
5959

6060
{% endhighlight %}
6161

62-
![](/angularjs/Diagram/Connector_images/Connector_img2.png)
62+
![AngularJS Diagram Add connector at run time](Connector_images/Connector_img2.png)
6363

6464
### Add connector at run time
6565

@@ -85,7 +85,7 @@ diagram.add(connector);
8585

8686
{% endhighlight %}
8787

88-
![](/angularjs/Diagram/Connector_images/Connector_img3.png)
88+
![AngularJS Diagram Connectors from palette](Connector_images/Connector_img3.png)
8989

9090
### Connectors from palette
9191

@@ -192,7 +192,7 @@ syncApp.controller('diagramCtrl', function($scope) {
192192

193193
{% endhighlight %}
194194

195-
![](/angularjs/Diagram/Connector_images/Connector_img4.png)
195+
![AngularJS Diagram Connections with ports](Connector_images/Connector_img4.png)
196196

197197
N> By default, connections are created at the intersecting point of segments and node bounds. The connection between any specific point of source and target nodes can be achieved with connection ports.
198198

@@ -311,7 +311,7 @@ syncApp.controller('diagramCtrl', function($scope) {
311311

312312
{% endhighlight %}
313313

314-
![](/angularjs/Diagram/Connector_images/Connector_img5.png)
314+
![AngularJS Diagram Segments](Connector_images/Connector_img5.png)
315315

316316
## Segments
317317

@@ -349,7 +349,7 @@ connectors.push(connector);
349349

350350
{% endhighlight %}
351351

352-
![](/angularjs/Diagram/Connector_images/connector_img6.png)
352+
![AngularJS Diagram Straight](Connector_images/connector_img6.png)
353353

354354
The `point` property of straight segment allows you to define the end point of it. The following code example illustrates how to define the end point of a straight segment.
355355

@@ -383,7 +383,7 @@ connectors.push(connector);
383383

384384
{% endhighlight %}
385385

386-
![](/angularjs/Diagram/Connector_images/Connector_img7.png)
386+
![AngularJS Diagram Orthogonal segments](Connector_images/Connector_img7.png)
387387

388388
### Orthogonal
389389

@@ -415,7 +415,7 @@ connectors.push(connector);
415415

416416
{% endhighlight %}
417417

418-
![](/angularjs/Diagram/Connector_images/Connector_img8.png)
418+
![AngularJS Diagram Orthogonal](Connector_images/Connector_img8.png)
419419

420420
The `length` and `direction` properties allow to define the flow and length of segment. The following code example illustrates how to create customized orthogonal segments.
421421

@@ -446,15 +446,15 @@ connectors.push(connector);
446446

447447
{% endhighlight %}
448448

449-
![](/angularjs/Diagram/Connector_images/Connector_img9.png)
449+
![AngularJS Diagram direction properties](Connector_images/Connector_img9.png)
450450

451451
#### Avoid overlapping
452452

453453
Orthogonal segments are automatically re-routed, in order to avoid overlapping with the source and target nodes. The following images illustrate how orthogonal segments are re-routed.
454454

455-
![](/angularjs/Diagram/Connector_images/Connector_img10.png)
455+
![AngularJS Diagram Avoid overlapping](Connector_images/Connector_img10.png)
456456

457-
![](/angularjs/Diagram/Connector_images/Connector_img11.png)
457+
![AngularJS Diagram Bezier](Connector_images/Connector_img11.png)
458458

459459
N> Overlapping with source and target nodes are only avoided. Other nodes are not considered as obstacles.
460460

@@ -488,7 +488,7 @@ connectors.push(connector);
488488

489489
{% endhighlight %}
490490

491-
![](/angularjs/Diagram/Connector_images/Connector_img12.png)
491+
![AngularJS Diagram properties](Connector_images/Connector_img12.png)
492492

493493
The `point1` and `point2` properties of bezier segment enable you to set the control points. The following code example illustrates how to configure the Bezier segments with control points.
494494

@@ -526,7 +526,7 @@ connectors.push(connector);
526526

527527
{% endhighlight %}
528528

529-
![](/angularjs/Diagram/Connector_images/Connector_img13.png)
529+
![AngularJS Diagram vector properties](Connector_images/Connector_img13.png)
530530

531531

532532
The `vactor1` and `vector2` properties of bezier segment enable you to define the vectors. The following code illustrates how to configure a bezier curve with vectors.
@@ -564,7 +564,7 @@ connectors.push(connector);
564564

565565
{% endhighlight %}
566566

567-
![](/angularjs/Diagram/Connector_images/Connector_img14.png)
567+
![AngularJS Diagram Complex segments](Connector_images/Connector_img14.png)
568568

569569
### Complex segments
570570

@@ -603,7 +603,7 @@ connectors.push(connector);
603603

604604
{% endhighlight %}
605605

606-
![](/angularjs/Diagram/Connector_images/Connector_img15.png)
606+
![AngularJS Diagram Decorator](Connector_images/Connector_img15.png)
607607

608608
## Decorator
609609

@@ -688,7 +688,7 @@ connectors.push(connector3);
688688

689689
{% endhighlight %}
690690

691-
![](/angularjs/Diagram/Connector_images/Connector_img16.png)
691+
![AngularJS Diagram connector push](Connector_images/Connector_img16.png)
692692

693693
## Padding
694694

@@ -734,7 +734,7 @@ var connectors = [{
734734

735735
{% endhighlight %}
736736

737-
![](/angularjs/Diagram/Connector_images/Connector_img17.png)
737+
![AngularJS Diagram Padding](Connector_images/Connector_img17.png)
738738

739739
The `connectorPadding` property of node defines the space to be left between the node bounds and its edges. The following code example illustrates how to leave the space between a node and its connections.
740740

@@ -777,7 +777,7 @@ var connectors = [
777777

778778
{% endhighlight %}
779779

780-
![](/angularjs/Diagram/Connector_images/Connector_img18.png)
780+
![AngularJS Diagram connectorPadding](Connector_images/Connector_img18.png)
781781

782782
The `connectorPadding` property of port defines the space between the ports and its in/out edges. The following code example illustrates how to leave the space between ports and its connections.
783783

@@ -834,7 +834,7 @@ var connectors = [
834834

835835
{% endhighlight %}
836836

837-
![](/angularjs/Diagram/Connector_images/Connector_img19.png)
837+
![AngularJS Diagram Bridging](Connector_images/Connector_img19.png)
838838

839839
## Bridging
840840

@@ -881,7 +881,7 @@ syncApp.controller('diagramCtrl', function($scope) {
881881

882882
{% endhighlight %}
883883

884-
![](/angularjs/Diagram/Connector_images/Connector_img20.png)
884+
![AngularJS Diagram Connector](Connector_images/Connector_img20.png)
885885

886886
The direction of the bridge can be customized with the property `bridgeDirection`. BridgeDirection defines the intersecting segment where the bridge has to be inserted. By default, the bridge direction points to the top.
887887

@@ -904,7 +904,7 @@ syncApp.controller('diagramCtrl', function($scope) {
904904

905905
{% endhighlight %}
906906

907-
![](/angularjs/Diagram/Connector_images/Connector_img21.png)
907+
![AngularJS Diagram Corner radius](Connector_images/Connector_img21.png)
908908

909909
**Limitation**: Bezier segments do not support bridging.
910910

@@ -951,7 +951,7 @@ var connectors = [
951951

952952
{% endhighlight %}
953953

954-
![](/angularjs/Diagram/Connector_images/Connector_img22.png)
954+
![AngularJS Diagram Appearance](Connector_images/Connector_img22.png)
955955

956956
## Appearance
957957

@@ -1010,7 +1010,7 @@ var targetDecorator = {
10101010

10111011
{% endhighlight %}
10121012

1013-
![](/angularjs/Diagram/Connector_images/Connector_img23.png)
1013+
![AngularJS Diagram Interaction](Connector_images/Connector_img23.png)
10141014

10151015
## Interaction
10161016
Diagram allows to edit the connectors at runtime. To edit the connector segments at runtime, refer to [Connection Editing](/angularjs/Diagram/Interaction#connection-editing "Connection Editing").

angularjs/Kanban/Getting-Started.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Getting started with Kanban component
3-
description: Rendering a basic Kanban with remote data
2+
title: Getting started with AngularJS Kanban Control | Syncfusion
3+
description: Learn here about getting started with Syncfusion Essential AngularJS Kanban Control, its elements, and more.
44
platform: AngularJS
55
control: Kanban
66
documentation: ug
77
keywords: ejkanban, kanban, kanban board, js kanban
88
---
9-
# Getting Started
9+
# Getting Started with AngularJS Kanban
1010

1111
Before we start with the Kanban, please refer [this page](http://help.syncfusion.com/js/angularjs) page for general information regarding integrating Syncfusion widget’s.
1212

@@ -231,7 +231,7 @@ The code example for defining controls in AngularJS is as follows,
231231

232232
{% endhighlight %}
233233

234-
![](Getting_Started_images/Getting_Started_img1.png)
234+
![AngularJS Kanban Create a Kanban](Getting_Started_images/Getting_Started_img1.png)
235235

236236
## Data Binding
237237

@@ -264,7 +264,7 @@ For demonstration purpose, [Northwind OData service](http://mvc.syncfusion.com/S
264264

265265
{% endhighlight %}
266266

267-
![](Getting_Started_images/Getting_Started_img2.png)
267+
![AngularJS Kanban Data Binding](Getting_Started_images/Getting_Started_img2.png)
268268

269269
N> ODataAdaptor is the default adaptor used within DataManager. While binding to other web services, proper [`data adaptor`](http://help.syncfusion.com/js/datamanager/data-adaptors) needs to be set for `adaptor` option of DataManager.
270270

@@ -302,7 +302,7 @@ In order to display cards in Kanban control, you need to map the database fields
302302

303303
{% endhighlight %}
304304

305-
![](Getting_Started_images/Getting_Started_img3.png)
305+
![AngularJS Kanban Mapping Values](Getting_Started_images/Getting_Started_img3.png)
306306

307307
N> `e-fields.primaryKey` field is mandatory for “Drag and Drop” ,”Selection” and “Editing” Features.
308308

@@ -335,7 +335,7 @@ N> `e-fields.primaryKey` field is mandatory for “Drag and Drop” ,”Selecti
335335

336336
{% endhighlight %}
337337

338-
![](Getting_Started_images/Getting_Started_img4.png)
338+
![AngularJS Kanban Enable Swimlane](Getting_Started_images/Getting_Started_img4.png)
339339

340340
## Adding Filters
341341

@@ -372,6 +372,6 @@ Filters allows to filter the collection of cards from `dataSource` which meets t
372372

373373
{% endhighlight %}
374374

375-
![](Getting_Started_images/Getting_Started_img5.png)
375+
![AngularJS Kanban Adding Filters](Getting_Started_images/Getting_Started_img5.png)
376376

377377
N> The control can be render using `ej.web.all.min.js` and angular related references are referred from `ej.widget.angular.min.js` to render the control.

0 commit comments

Comments
 (0)