C1OrgChart Layout and Appearance > C1OrgChart Appearance Properties > FlowDirection |
The FlowDirection property allows you to specify whether the chart should flow right to left or left to right. By default, the C1OrgChart flows left to right. You can change the FlowDirection property to RightToLeft with the following markup:
XAML |
Copy Code
|
---|---|
<c1:C1OrgChart x:Name="_orgChart" FlowDirection="RightToLeft" ItemTemplate="{StaticResource EmployeeTemplate }" > </c1:C1OrgChart> |