ComponentOne OrgChart for UWP
Working with OrgChart for UWP / OrgChart for UWP Appearance Properties / Connector
In This Topic
    Connector
    In This Topic

    The C1OrgChart exposes several properties that allow you to customize the lines used to connect the nodes. These properties include: ConnectorStroke (specifies the Brush used to create the connectors), ConnectorThickness (the thickness of the lines), ConnectorDashArray (used to create dashed lines), and a few others. These properties are analogous to the ones in the Line element.
    For example, if you wanted to connect the items using dotted lines you could use this XAML markup:

    Markup
    Copy Code
    <OrgChart:C1OrgChart Name="_orgChart"   
        ConnectorStroke="OrangeRed"
         ConnectorThickness="2"
         ConnectorDashArray="3 5"
         Foreground="#FF39B925" />
    

     

    The ConnectorDashArray property uses a collection of double values that specify the widths of dashes and blank spaces, expressed in ConnectorThickness units.

    See Also