Skip to content

Commit 6dab199

Browse files
Merge pull request #315 from Syncfusion-Content/hotfix/hotfix-v26.1.35
DOCINFRA-2341_merged_using_automation
2 parents 43b2ce4 + 57f6da3 commit 6dab199

15 files changed

+126
-206
lines changed

ej2-javascript-toc.html

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@
726726
<li><a href="/ej2-javascript/diagram/bpmn-dataObject">BPMN Data Object</a></li>
727727
<li><a href="/ej2-javascript/diagram/bpmn-dataSource">BPMN Data Source</a></li>
728728
<li><a href="/ej2-javascript/diagram/bpmn-textAnnotation">BPMN Text Annotation</a></li>
729-
<li><a href="/ej2-javascript/diagram/bpmn-groups">BPMN Group</a></li>
729+
<li><a href="/ej2-javascript/diagram/bpmn-group">BPMN Group</a></li>
730730
<li><a href="/ej2-javascript/diagram/bpmn-expandedSubProcess">BPMN Expanded SubProcess</a></li>
731731
<li><a href="/ej2-javascript/diagram/bpmn-flows">BPMN Flow Connectors</a></li>
732732
</ul>
@@ -765,7 +765,7 @@
765765
<li><a href="/ej2-javascript/diagram/node-labels">Annotation for Node</a></li>
766766
<li><a href="/ej2-javascript/diagram/connector-labels">Annotation for Connector</a></li>
767767
<li><a href="/ej2-javascript/diagram/label-appearance">Annotation Appearance</a></li>
768-
<li><a href="/ej2-javascript/diagram/label-interaction">Annotation Iteraction</a></li>
768+
<li><a href="/ej2-javascript/diagram/label-interaction">Annotation Interaction</a></li>
769769
<li><a href="/ej2-javascript/diagram/label-events">Annotation Events</a></li>
770770

771771
</ul>
@@ -794,7 +794,7 @@
794794
<li><a href="/ej2-javascript/diagram/radial-layout">Radial tree</a></li>
795795
<li><a href="/ej2-javascript/diagram/mindmap-layout">Mind Map tree</a></li>
796796
<li><a href="/ej2-javascript/diagram/symmetric-layout">Symmetric layout</a></li>
797-
<li><a href="/ej2-javascript/diagram/layout-customization">Layout customization tree</a></li>
797+
<li><a href="/ej2-javascript/diagram/layout-customization">Layout customization</a></li>
798798
<li><a href="/ej2-javascript/diagram/layout-event">Events</a></li>
799799
</ul>
800800
</li>
@@ -1200,6 +1200,8 @@
12001200
<li><a href="/ej2-javascript/gantt/pdf-export/pdf-export">Pdf Export</a>
12011201
<ul>
12021202
<li><a href="/ej2-javascript/gantt/pdf-export/multiple-gantt-exporting">Multiple Gantt Exporting</a></li>
1203+
<li><a href="/ej2-javascript/gantt/pdf-export/customize-pdf-export">Customize PDF Export</a></li>
1204+
<li><a href="/ej2-javascript/gantt/pdf-export/header-and-footer">Header and Footer</a></li>
12031205
</ul>
12041206
</li>
12051207
</ul>
@@ -1227,7 +1229,8 @@
12271229
</li>
12281230
<li><a href="https://ej2.syncfusion.com/documentation/api/gantt/">API Reference</a></li>
12291231
</ul>
1230-
</li><li>
1232+
</li>
1233+
<li>
12311234
Grid
12321235
<ul>
12331236
<li><a href="/ej2-javascript/grid/getting-started">Getting Started</a></li>
Loading

ej2-javascript/diagram/js/bezier-controlPoint.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,18 @@ documentation: ug
99
domainurl: ##DomainURL##
1010
---
1111

12-
### How to interact with the bezier segments efficiently
12+
# Bezier Control points
13+
14+
## How to interact with the bezier segments efficiently
1315

1416
While interacting with multiple bezier segments, maintain their control points at the same distance and angle by using the bezierSettings.smoothness property of the connector class.
1517

1618
| BezierSmoothness value | Description | Output |
1719
|-------- | -------- | -------- |
18-
| SymmetricDistance| Both control points of adjacent segments will be at the same distance when any one of them is editing. | ![Symmetric distance](../../../images/Symmetric-distance.gif) |
19-
| SymmetricAngle | Both control points of adjacent segments will be at the same angle when any one of them is editing. | ![Symmetric Angle](../../../images/symmetric-Angle.gif) |
20-
| Default | Both control points of adjacent segments will be at the same angle and same distance when any one of them is editing. | ![Default](../../../images/DefaultSymmetric.gif) |
21-
| None | Segment’s control points are interacted independently from each other. | ![None](../../../images/SymmetricNone.gif) |
20+
| SymmetricDistance| Both control points of adjacent segments will be at the same distance when any one of them is editing. | ![Symmetric distance](../images/Symmetric-distance.gif) |
21+
| SymmetricAngle | Both control points of adjacent segments will be at the same angle when any one of them is editing. | ![Symmetric Angle](../images/symmetric-Angle.gif) |
22+
| Default | Both control points of adjacent segments will be at the same angle and same distance when any one of them is editing. | ![Default](../images/DefaultSymmetric.gif) |
23+
| None | Segment’s control points are interacted independently from each other. | ![None](../images/SymmetricNoneImage.png) |
2224

2325
{% tabs %}
2426
{% highlight js tabtitle="index.js" %}
@@ -31,14 +33,14 @@ While interacting with multiple bezier segments, maintain their control points a
3133

3234
{% previewsample "page.domainurl/code-snippet/diagram/connectors-cs17" %}
3335

34-
### How to show or hide the bezier segment’s control points
36+
## How to show or hide the bezier segment’s control points
3537

36-
By using the [`controlPointsVisibility`](../api/diagram/controlPointsVisibility/) property of the Connector class, you can enable or disable the visibility of the bezier segment’s control points.
38+
By using the [`controlPointsVisibility`](../api/diagram/controlPointsVisibility/) property of [`bezierSettings`](../api/diagram/bezierSettingsModel/), you can enable or disable the visibility of the bezier segment’s control points.
3739

3840
| ControlPointsVisibility value | Description | Output |
3941
|-------- | -------- | -------- |
40-
| None |It allows you to hide all control points of the bezier connector. | ![ControlPointsVisibility None](../../../images/Symmetric-distance.gif) |
41-
| Source | It allows you to show control points of the source segment and hides all other control points in a bezier connector. | ![ControlPointsVisibility Source](../../../images/symmetric-Angle.gif) |
42-
| Target | It allows you to show control points of the target segment and hides all other control points in a bezier connector. | ![ControlPointsVisibility Target](../../../images/DefaultSymmetric.gif) |
43-
| Intermediate | It allows you to show control points of the intermediate segments and hides all other control points in a bezier connector.| ![ControlPointsVisibility Intermediate](../../../images/SymmetricNone.gif) |
44-
| All | It allows you to show all the control points of the bezier connector, including the source, target, and intermediate segments’ control points. | ![ControlPointsVisibility All](../../../images/SymmetricNone.gif) |
42+
| None |It allows you to hide all control points of the bezier connector. | ![ControlPointsVisibility None](../images/controlPointVisibilityNone.png) |
43+
| Source | It allows you to show control points of the source segment and hides all other control points in a bezier connector. | ![ControlPointsVisibility Source](../images/controlPointVisibilitySource.png) |
44+
| Target | It allows you to show control points of the target segment and hides all other control points in a bezier connector. | ![ControlPointsVisibility Target](../images/controlPointVisibilityTarget.png) |
45+
| Intermediate | It allows you to show control points of the intermediate segments and hides all other control points in a bezier connector.| ![ControlPointsVisibility Intermediate](../images/controlPointVisibilityIntermediate.png) |
46+
| All | It allows you to show all the control points of the bezier connector, including the source, target, and intermediate segments’ control points. | ![ControlPointsVisibility All](../images/controlPointVisibilityAll.png) |

ej2-javascript/diagram/js/bezier-segEditOrientation.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,18 @@ documentation: ug
99
domainurl: ##DomainURL##
1010
---
1111

12+
# Bezier Connector Settings
13+
1214
## How to edit bezier segments based on bezier connector settings
1315

14-
The intermediate point of two adjacent bezier segments can be edited interactively based on the [`segmentEditOrientation`](../api/diagram/bezierSegmentEditOrientation/) property of the Connector class.
16+
The intermediate point of two adjacent bezier segments can be edited interactively based on the [`segmentEditOrientation`](../api/diagram/bezierSegmentEditOrientation/) property of [`bezierSettings`](../api/diagram/bezierSettingsModel/).
1517

1618
| SegmentEditOrientation value | Description | Output |
1719
|-------- | -------- | -------- |
18-
| Bidirectional |It allows the intermediate points to be dragged in either vertical or horizontal directions. | ![Bidirectional](../../../images/bez-bidirectional.gif) |
19-
| Freeform | It allows the intermediate points to be dragged in any direction. | ![Freeform](../../../images/bez-freeform.gif) |
20+
| Bidirectional |It allows the intermediate points to be dragged in either vertical or horizontal directions. | ![Bidirectional](../images/bez-bidirectional.gif) |
21+
| Freeform | It allows the intermediate points to be dragged in any direction. | ![Freeform](../images/bez-freeform.gif) |
2022

21-
The following code illustrates how to interact with Bezier efficiently by using the [`smoothness`](../api/diagram/bezierSmoothness/) and `segmentEditOrientation` properties of the Connector class.
23+
The following code illustrates how to interact with Bezier efficiently by using the [`smoothness`](../api/diagram/bezierSmoothness/) and `segmentEditOrientation` properties of the `bezierSettings`.
2224

2325
{% tabs %}
2426
{% highlight js tabtitle="index.js" %}

ej2-javascript/diagram/js/connector-customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The following code example illustrates how to customize the appearance of the de
5959

6060
The gradient property is used to set the gradient color for the decorator. There are two types of gradient.
6161
* Linear
62-
* Raial
62+
* Radial
6363

6464
The following code example illustrates how to apply gradient for the decorator.
6565

@@ -273,5 +273,5 @@ The following code illustrates how to split the connector and create a connectio
273273

274274
{% previewsample "page.domainurl/code-snippet/diagram/connectors-cs29" %}
275275

276-
![Enable Connector Split](../images/EnableSplit.gif)
276+
![Enable Connector Split](images/EnableSplit.gif)
277277

ej2-javascript/diagram/js/connector-interaction.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ Connectors can be selected, dragged, and routed over the diagram page.
1717

1818
A connector can be selected, simply just by clicking on it.
1919

20-
![Connector select unSelect GIF](../images/connector-SelectionGif.gif)
21-
2220
A connector can be selected at runtime by using the Select method and clear the selection in the diagram using the ClearSelection. The following code explains how to select and clear selection in the diagram.
2321

2422
{% tabs %}
@@ -36,7 +34,7 @@ A connector can be selected at runtime by using the Select method and clear the
3634

3735
Connector can be dragged by just clicking on the connector and dragging.
3836

39-
![Connector Drag Gif](../images/connector-dragGif.gif)
37+
![Connector Drag Gif](images/connector-dragGif.gif)
4038

4139
A connector can be dragged at runtime by using the Drag method. The following code explains how to drag the connector by using the drag method.
4240

@@ -55,7 +53,7 @@ A connector can be dragged at runtime by using the Drag method. The following co
5553

5654
The connector can be selected by clicking it. When the connector is selected, circles will be added on the starting and ending of the connector that is represented by Thumbs. Clicking and dragging those handles helps you to adjust the source and target points.
5755

58-
![End Point drag GIF](../images/EndPointDragGif.gif)
56+
![End Point drag GIF](images/EndPointDragGif.gif)
5957

6058
The following code example shows how to drag connector end point at runtime.
6159

ej2-javascript/diagram/js/constraints.md

Lines changed: 2 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,6 @@ To know more about Bitwise operators, refer to [`Bitwise Operations`](#bitwise-o
1919

2020
[`Diagram constraints`](../api/diagram/diagramconstraints/) allows you to enable or disable the following behaviors:
2121

22-
* Page editing
23-
* Bridging
24-
* Zoom and pan
25-
* Undo/redo
26-
* Tooltip
27-
* Line routing
28-
* Virtualization
29-
3022
The following table displays the list of all diagram constraints.
3123

3224
| Constraints | Description |
@@ -93,16 +85,6 @@ N> By default, the following constraints are enabled in the diagram,
9385

9486
Node constraints allows to enable or disable the following behaviors of node. They are as follows:
9587

96-
* Select
97-
* Drag
98-
* Resize
99-
* Rotate
100-
* Delete
101-
* InConnect
102-
* OutConnect
103-
* Shadow
104-
* Tooltip
105-
10688
| Constraints | Description |
10789
| -------- | -------- |
10890
|None|Disable all node Constraints|
@@ -207,15 +189,6 @@ N>By default, the following constraints are enabled for the node,
207189
208190
Connector constraints allows you to enable or disable certain behaviors of connectors.
209191
210-
* Select
211-
* Drag
212-
* DragSourceEnd
213-
* DragTargetEnd
214-
* Delete
215-
* InheritBridging
216-
* PointerEvents
217-
* Tooltip
218-
219192
| Constraints | Description |
220193
| -------- | -------- |
221194
|None|Disable all connector Constraints.|
@@ -332,9 +305,6 @@ N>By default, the following constraints are enabled for the connector,
332305
333306
The constraints property of the Port allows you to enable or disable the following behaviors of port.
334307
335-
* InConnect
336-
* OutConnect
337-
338308
| Constraints | Description |
339309
| -------- | -------- |
340310
|None|Disable all port Constraints.|
@@ -476,10 +446,6 @@ For more details about annotation constraints, refer to [`AnnotationConstraints`
476446
477447
Selector visually represents the selected elements with certain editable thumbs. The visibility of the thumbs can be controlled with selector constraints. The part of selector is categorized as follows:
478448
479-
* Resizer
480-
* Rotator
481-
* User handles
482-
483449
| Constraints | Description |
484450
| -------- | -------- |
485451
|None|Hides all the selector elements.|
@@ -550,12 +516,7 @@ N> By default, the following constraints are enabled for the selected items,
550516
551517
## Snap constraints
552518
553-
Snap constraints control the visibility of gridlines and enable/disable snapping. Snap constraints allow to set the following behaviors.
554-
555-
* Show only horizontal or vertical gridlines.
556-
* Show both horizontal and vertical gridlines.
557-
* Snap to either horizontal or vertical gridlines.
558-
* Snap to both horizontal and vertical gridlines.
519+
Snap constraints control the visibility of gridlines and enable/disable snapping.
559520
560521
The following list of snapping constraints are used to enable or disable certain features of snapping.
561522
@@ -617,11 +578,7 @@ N> By default, the following constraints are enabled for the snap functionality
617578
618579
## Boundary constraints
619580
620-
Boundary constraints defines a boundary for the diagram inside which the interaction should be done. Boundary constraints allow to set the following behaviors.
621-
622-
* Infinite
623-
* Diagram
624-
* Page
581+
Boundary constraints defines a boundary for the diagram inside which the interaction should be done.
625582
626583
The following list of constraints are used to enable or disable certain features of boundary interactions of the diagram.
627584

ej2-javascript/diagram/ts/bezier-controlPoint.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,18 @@ publishingplatform: ##Platform_Name##
88
documentation: ug
99
domainurl: ##DomainURL##
1010
---
11+
# Bezier Control points
1112

12-
### How to interact with the bezier segments efficiently
13+
## How to interact with the bezier segments efficiently
1314

1415
While interacting with multiple bezier segments, maintain their control points at the same distance and angle by using the bezierSettings.smoothness property of the connector class.
1516

1617
| BezierSmoothness value | Description | Output |
1718
|-------- | -------- | -------- |
18-
| SymmetricDistance| Both control points of adjacent segments will be at the same distance when any one of them is editing. | ![Symmetric distance](../../../images/Symmetric-distance.gif) |
19-
| SymmetricAngle | Both control points of adjacent segments will be at the same angle when any one of them is editing. | ![Symmetric Angle](../../../images/symmetric-Angle.gif) |
20-
| Default | Both control points of adjacent segments will be at the same angle and same distance when any one of them is editing. | ![Default](../../../images/DefaultSymmetric.gif) |
21-
| None | Segment’s control points are interacted independently from each other. | ![None](../../../images/SymmetricNone.gif) |
19+
| SymmetricDistance| Both control points of adjacent segments will be at the same distance when any one of them is editing. | ![Symmetric distance](../images/Symmetric-distance.gif) |
20+
| SymmetricAngle | Both control points of adjacent segments will be at the same angle when any one of them is editing. | ![Symmetric Angle](../images/symmetric-Angle.gif) |
21+
| Default | Both control points of adjacent segments will be at the same angle and same distance when any one of them is editing. | ![Default](../images/DefaultSymmetric.gif) |
22+
| None | Segment’s control points are interacted independently from each other. | ![None](../images/SymmetricNoneImage.png) |
2223

2324
{% tabs %}
2425
{% highlight ts tabtitle="index.ts" %}
@@ -31,14 +32,14 @@ While interacting with multiple bezier segments, maintain their control points a
3132

3233
{% previewsample "page.domainurl/code-snippet/diagram/connectors-cs17" %}
3334

34-
### How to show or hide the bezier segment’s control points
35+
## How to show or hide the bezier segment’s control points
3536

36-
By using the [`controlPointsVisibility`](../api/diagram/controlPointsVisibility/) property of the Connector class, you can enable or disable the visibility of the bezier segment’s control points.
37+
By using the [`controlPointsVisibility`](../api/diagram/controlPointsVisibility/) property of [`bezierSettings`](../api/diagram/bezierSettingsModel/), you can enable or disable the visibility of the bezier segment’s control points.
3738

3839
| ControlPointsVisibility value | Description | Output |
3940
|-------- | -------- | -------- |
40-
| None |It allows you to hide all control points of the bezier connector. | ![ControlPointsVisibility None](../../../images/Symmetric-distance.gif) |
41-
| Source | It allows you to show control points of the source segment and hides all other control points in a bezier connector. | ![ControlPointsVisibility Source](../../../images/symmetric-Angle.gif) |
42-
| Target | It allows you to show control points of the target segment and hides all other control points in a bezier connector. | ![ControlPointsVisibility Target](../../../images/DefaultSymmetric.gif) |
43-
| Intermediate | It allows you to show control points of the intermediate segments and hides all other control points in a bezier connector.| ![ControlPointsVisibility Intermediate](../../../images/SymmetricNone.gif) |
44-
| All | It allows you to show all the control points of the bezier connector, including the source, target, and intermediate segments’ control points. | ![ControlPointsVisibility All](../../../images/SymmetricNone.gif) |
41+
| None |It allows you to hide all control points of the bezier connector. | ![ControlPointsVisibility None](../images/controlPointVisibilityNone.png) |
42+
| Source | It allows you to show control points of the source segment and hides all other control points in a bezier connector. | ![ControlPointsVisibility Source](../images/controlPointVisibilitySource.png) |
43+
| Target | It allows you to show control points of the target segment and hides all other control points in a bezier connector. | ![ControlPointsVisibility Target](../images/controlPointVisibilityTarget.png) |
44+
| Intermediate | It allows you to show control points of the intermediate segments and hides all other control points in a bezier connector.| ![ControlPointsVisibility Intermediate](../images/controlPointVisibilityIntermediate.png) |
45+
| All | It allows you to show all the control points of the bezier connector, including the source, target, and intermediate segments’ control points. | ![ControlPointsVisibility All](../images/controlPointVisibilityAll.png) |

0 commit comments

Comments
 (0)