Skip to main content

XYDiagram2D.PaneLayoutDirection Property

OBSOLETE

This property is obsolete now. Use the PaneLayout.Direction property instead.

Specifies the layout direction of a diagram’s panes.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

[Obsolete("This property is obsolete now. Use the PaneLayout.Direction property instead.")]
[Browsable(false)]
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public PaneLayoutDirection PaneLayoutDirection { get; set; }

Property Value

Type Description
PaneLayoutDirection

A PaneLayoutDirection object representing the direction in which panes are aligned.

Available values:

Name Description
Vertical

Panes are aligned in the vertical direction.

PaneLayoutDirection_Vertical

Horizontal

Panes are aligned in the horizontal direction.

PaneLayoutDirection_Horizontal

Remarks

The following images demonstrate the PaneLayoutDirection property in action.

PaneLayoutDirection = Horizontal PaneLayoutDirection = Vertical
PaneLayoutDirection_Horizontal PaneLayoutDirection_Vertical

To specify the distance between panes, use the XYDiagram2D.PaneDistance property.

For more information, refer to Pane Layout.

See Also