Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DiagramControl.SugiyamaLayoutColumnsAlignment Property

Gets or sets the alignment of the diagram depending on its direction. This is a dependency property.

Namespace: DevExpress.Xpf.Diagram

Assembly: DevExpress.Xpf.Diagram.v24.2.dll

NuGet Package: DevExpress.Wpf.Diagram

#Declaration

public Alignment SugiyamaLayoutColumnsAlignment { get; set; }

#Property Value

Type Description
Alignment

A Alignment enumeration value that specifies the diagram alignment.

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.

#Remarks

Use the SugiyamaLayoutColumnsAlignment property to specify the alignment of the layered diagram on the canvas. The resulting diagram position will differ depending on the DiagramControl.SugiyamaLayoutDirection property value.

The following table describes the effect of the SugiyamaLayoutColumnsAlignment property. Grey arrows indicate the layout direction. The diagram is aligned along the red axis.

DiagramControl.SugiyamaLayoutDirection property value Alignment
TopToBottom SugiyamaColumnsAlignmentTB
BottomToTop SugiyamaColumnsAlignmentBT
LeftToRight SugiyamaColumnsAlignmentLR
RightToLeft SugiyamaColumnsAlignmentLR
See Also