Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions wpf/Diagram/Connector/AppearanceAndValidation.md
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ ConnectorViewModel paddingConnector = new ConnectorViewModel()

![WPF Diagram Connector Padding](Connector_images/wpf-diagram-connector-padding.PNG)

For sample, refer to [Decorator](https://github.com/SyncfusionExamples/WPF-Diagram-Examples/tree/master/Samples/Connector/Connector%20Padding "Decorator")
For sample, refer to [Decorator](https://github.com/SyncfusionExamples/WPF-Diagram-Examples/tree/master/Samples/Connector/Connector%20Padding)

## Bridging

Expand Down Expand Up @@ -661,15 +661,15 @@ Find the [Sample](https://github.com/SyncfusionExamples/WPF-Diagram-Examples/tre

## See Also

[How to add annotations for connectors](/wpf/diagram/annotation)
[How to add annotations for connectors?](/wpf/diagram/annotation)

[How to add or remove connector constraints](/wpf/diagram/constraints#connector-constraints)
[How to add or remove connector constraints?](/wpf/diagram/constraints#connector-constraints)

[How to add ports for connector](/wpf/diagram/port)
[How to add ports for connector?](/wpf/diagram/port)

[How to group other elements with connector](/wpf/diagram/group)
[How to group other elements with connector?](/wpf/diagram/group)

[How to draw connector independently using drawing tool](/wpf/diagram/tools)
[How to draw connector independently using drawing tool?](/wpf/diagram/tools)

[How to customize the connection indicator style of node and port?](https://support.syncfusion.com/kb/article/10048/how-to-customize-the-connection-indicator-style-of-node-and-port-in-wpf-diagram-sfdiagram)

Expand Down
2 changes: 1 addition & 1 deletion wpf/Diagram/Connector/Segments/MultipleSegments.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ documentation: ug

# Multiple segments creation

Multiple segments can be added in a single connector one after another. you can add above four type of segments in single connector at a time.
Multiple segments can be added in a single connector one after another. You can add above four type of segments in single connector at a time.

{% tabs %}
{% highlight xaml %}
Expand Down
4 changes: 2 additions & 2 deletions wpf/Diagram/Connector/SelectionAndDragging.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ connector.Constraints.Add(ConnectorConstraints.Routing);

Diagram supports two types of routing algorithm:

* Classic: Additional segments will be added based on the position and dimension of the obstacles in their path. This type of routing gives less priority to geometry length and number of bends.
* **Classic:** Additional segments will be added based on the position and dimension of the obstacles in their path. This type of routing gives less priority to geometry length and number of bends.

* Advanced: This routing type evaluates all possible geometrical paths for a connector aiming to find one that has a minimal bends and length.
* **Advanced:** This routing type evaluates all possible geometrical paths for a connector aiming to find one that has a minimal bends and length.

The routing algorithm can be specified by using [`RoutingType`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.LineRoutingSettings.html#Syncfusion_UI_Xaml_Diagram_LineRoutingSettings_RoutingType) property of [`LineRoutingSettings`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Diagram.LineRoutingSettings.html) class.

Expand Down