Articles in this section
Category / Section

How to customize the size of the segment decorators of a Connector in WPF Diagram(SfDiagram)?

2 mins read

In WPF Diagram (SfDiagram), the size of the connector’s segment decorators can be personalized by overriding the Width and Height properties in the SegmentDecoratorStyle of the Connector.

Code snippet:

<!--Style for the Connector-->
<Style TargetType="syncfusion:Connector">
   <Setter Property="ConnectorGeometryStyle">
       <Setter.Value>
           <Style TargetType="Path">
               <Setter Property="Stroke" Value="#6BA5D7"/>
               <Setter Property="StrokeThickness" Value="1"/>
           </Style>
       </Setter.Value>
   </Setter>
   <Setter Property="TargetDecoratorStyle">
       <Setter.Value>
           <Style TargetType="Path">
               <Setter Property="Fill" Value="#6BA5D7"/>
               <Setter Property="StrokeThickness" Value="1"/>
           </Style>
       </Setter.Value>
   </Setter>
   <Setter Property="SegmentDecoratorStyle">
       <Setter.Value>
           <Style TargetType="Path">
                <Setter Property="Fill" Value="#6BA5D7"/>
                <Setter Property="Stroke" Value="#6BA5D7"/>
                <Setter Property="Stretch" Value="Fill"/>
                <!--Specify the size for the segment decorator-->
                <Setter Property="Width" Value="30"/>
                <Setter Property="Height" Value="30"/> 
          </Style>
       </Setter.Value>
   </Setter>
</Style>

Conclusion

I hope you enjoyed learning about how to customize the size of the segment decorators of a Connector in WPF Diagram(SfDiagram).

You can refer to our WPF Diagram feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied