You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/ActionofConnectors/AddConnectorThroughConnectorCollection).
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/ActionofConnectors/AddConnectorAtRuntime).
109
113
### How to Clone a Connector at Runtime
110
114
[Clone](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.Connector.html#Syncfusion_Blazor_Diagram_Connector_Clone) is a virtual method on connector that creates a copy of a diagram object. After cloning, set a unique ID for the cloned connector. The following code demonstrates how to clone the connector during runtime.
@@ -149,6 +153,8 @@ A complete working sample can be downloaded from [GitHub](https://github.com/Syn
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/CloneConnector)
153
159

154
160
## How to Add a Connector with Annotations at Runtime
@@ -162,7 +168,7 @@ The following code explains how to add a connector with annotation at runtime b
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/ActionofConnectors/ConnectorFromPalette)
288
299
289
300

@@ -341,6 +352,8 @@ The following code shows how to remove a connector at runtime.
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/ActionofConnectors/RemoveConnectorsAtRunTime)
345
358
346
359
A connector can also be removed from the diagram by using the native `RemoveAt` method. Refer to the following example that shows how to remove the connector at runtime.
@@ -398,6 +411,8 @@ The following code example explains how to change the connector properties.
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/ActionofConnectors/UpdateConnectorAtRunTime).
402
417
403
418
N> [BeginUpdate](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.SfDiagramComponent.html#Syncfusion_Blazor_Diagram_SfDiagramComponent_BeginUpdate) and [EndUpdateAsync](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram.SfDiagramComponent.html#Syncfusion_Blazor_Diagram_SfDiagramComponent_EndUpdateAsync) methods allow you to temporarily stop the continuous update of the control and resume it once the updates are complete.
@@ -476,7 +491,9 @@ The following code example illustrates how to connect two nodes.
476
491
}
477
492
}
478
493
```
479
-
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/ActionofConnectors/ConnectWithNode)
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/ActionofConnectors/ConnectWithNode).
480
497
481
498

482
499
@@ -580,7 +597,9 @@ The following code example illustrates how to create port to port connections.
580
597
}
581
598
}
582
599
```
583
-
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/ActionofConnectors/ConnectWithPort)
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/ActionofConnectors/ConnectWithPort).
584
603
585
604

A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/Decorator)
74
76
75
77
### How to Customize Connector Decorator Appearance
@@ -139,6 +141,8 @@ The following code example illustrates how to customize the decorator appearance
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/DecoratorAppearance)
143
147
144
148

@@ -215,6 +219,8 @@ Padding adds space between the connector’s end point and the object to where i
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/Padding)
219
225
220
226

@@ -310,6 +316,8 @@ The following code example illustrates how to enable line bridging.
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/Bridging)
314
322
315
323
>**Note:** Bridging support is not applicable for layout.
@@ -373,6 +381,8 @@ Corner radius rounds the corners of connectors. Set the radius using the [Corner
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/CornerRadius)
377
387
378
388

@@ -436,6 +446,8 @@ The following code example illustrates how to customize the segment appearance.
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/SegmentAppearance)
440
452
441
453
## How to Enable or Disable Connector Behavior
@@ -494,7 +506,9 @@ The following code illustrates how to disable selection.
494
506
}
495
507
}
496
508
```
497
-
A complete working sample can be downloaded [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/Constraints)
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/Constraints)
498
512
499
513
## How to Add Additional Information for Connector
500
514
@@ -550,6 +564,8 @@ A complete working sample can be downloaded [GitHub](https://github.com/Syncfusi
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/CustomProperty)
554
570
555
571
## How to Set Connector Z-Index
@@ -590,6 +606,8 @@ The following code illustrates how to render a connector based on stack order.
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/ZIndexProperty)
594
612
595
613
## How to Set Hit Padding for Connector
@@ -633,6 +651,7 @@ The following code illustrates how to set hit padding for a connector.
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/SourcePaddingAndTargetPadding)
689
710
690
711
## How to Set Connection Padding for Connector
@@ -735,6 +756,8 @@ The following code example illustrates how to set connection padding for a conne
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/ConnectionPadding)
739
762
740
763
## How to enable Connector Split
@@ -814,6 +837,8 @@ The following code illustrates how to enable connector splitting and create conn
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Interaction)
@@ -872,6 +897,8 @@ A complete working sample can be downloaded from [GitHub](https://github.com/Syn
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/MaxSegmentThumb).
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Customization/MaxSegmentThumbRuntime).
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/SelectionChangeEvent).
87
89
88
90
## How to Handle Position Change Event
@@ -156,6 +158,8 @@ A complete working sample can be downloaded from [GitHub](https://github.com/Syn
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/PositionChangeEvent).
160
164
161
165
## How to Handle Connection Change Event
@@ -238,6 +242,8 @@ A complete working sample can be downloaded from [GitHub](https://github.com/Syn
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/ConnectionChangeEvent)
242
248
243
249
## How to Handle Source Point Change Event
@@ -296,6 +302,8 @@ A complete working sample can be downloaded from [GitHub](https://github.com/Syn
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/SourcePointChanged)
300
308
301
309
## How to Handle Target Point Change Event
@@ -354,6 +362,8 @@ A complete working sample can be downloaded from [GitHub](https://github.com/Syn
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/TargetPointChanged)
358
368
359
369
## How to Handle Connector Creating Event
@@ -405,6 +415,8 @@ A complete working sample can be downloaded from [GitHub](https://github.com/Syn
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/ConnectorCreating)
409
421
410
422
## How to Handle Segment Collection Change Event
@@ -450,6 +462,8 @@ A complete working sample can be downloaded from [GitHub](https://github.com/Syn
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/SegmentCollectionChangeEvent)
454
468
455
469
## How to Handle Collection Change Events
@@ -495,6 +509,8 @@ A complete working sample can be downloaded from [GitHub](https://github.com/Syn
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/CollectionChangeEvent)
499
515
500
516
## How to Handle the Mouse Enter Event
@@ -532,6 +548,8 @@ The [MouseEnter](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Diagram
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/MouseEnterEvent)
536
554
537
555
## How to Handle the Mouse Leave Event
@@ -569,6 +587,8 @@ The [MouseLeave](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/t
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/MouseLeaveEvent).
573
593
574
594
## How to Handle the Mouse Hover Event
@@ -606,6 +626,8 @@ The [MouseHover](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/t
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/MouseHoverEvent).
610
632
611
633
## How to Handle Property Changed Event
@@ -649,6 +671,8 @@ The [Property Changed](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.D
A complete working sample can be downloaded from [GitHub](https://github.com/SyncfusionExamples/Blazor-Diagram-Examples/tree/master/UG-Samples/Connectors/Events/PropertyChangedEvent)
0 commit comments