Skip to main content
A newer version of this page is available. .

DiagramOptionsOrgChartLayout.TreeAlignment Property

Specifies the alignment of the org chart layout’s tree section.

Namespace: DevExpress.XtraDiagram.Options

Assembly: DevExpress.XtraDiagram.v19.2.dll

Declaration

[DefaultValue(Alignment.Center)]
[DiagramCategory(DiagramCategory.Layout)]
public virtual Alignment TreeAlignment { get; set; }

Property Value

Type Default Description
Alignment **Center**

A DevExpress.Diagram.Core.Alignment enumeration value.

Available values:

Name Description
Near

In a left-to-right layout, items are aligned to the left from the layout axis. In a right-to-left layout, items are aligned to the right.

Center

Items are aligned along the layout axis.

Far

In a left-to-right layout, items are aligned to the right from the layout axis. In a right-to-left layout, items are aligned to the left.

Property Paths

You can access this nested property as listed below:

Object Type Path to TreeAlignment
DiagramControl
.OptionsOrgChartLayout.TreeAlignment

Remarks

The OrgChartLayoutTreeAlignment property specifies how the layout algorithm arranges shapes relative to the layout axis. The layout axis is specified using the Direction property.

The table below illustrates tree alignments when the Direction property is set to LayoutDirection.TopToBottom and LayoutDirection.LeftToRight.

Alignment TopToBottom direction LeftToRight direction
Near Diagram Alignment Near Diagram Layout LtR Near
Center Diagram Alignment Center Diagram Layout LtR Center
Far Diagram Alignment Far Diagram Layout LtR Far
See Also