ComponentOne OrgChart for UWP
OrgChart for UWP Task- Based Help / Changing C1OrgChart Flow Direction
In This Topic
    Changing C1OrgChart Flow Direction
    In This Topic

    You can specify whether the chart shows from right to left or from left to right using the FlowDirection property.

    In XAML

    Locate the opening <OrgChart:C1OrgChart> tag and insert FlowDirection="RightToLeft" into the tag. The <OrgChart:C1OrgChart> markup should resemble the following:

    Markup
    Copy Code
    <OrgChart:C1OrgChart Name="_orgChart" Orientation="Horizontal" FlowDirection="RightToLeft">
    

    In the Properties Window

    1. Locate the FlowDirection property in the Properties window.
    2. Use the drop-down list to change the value to "RightToLeft".
    See Also