Skip to main content
A newer version of this page is available. .
All docs
V20.2

SankeyViewOptions.VerticalNodeIndent Property

Gets or sets the indent between nodes in pixels.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v20.2.dll

NuGet Packages: DevExpress.Charts, DevExpress.WindowsDesktop.Charts

Declaration

[XtraChartsLocalizableCategory(XtraChartsCategory.Layout)]
public int VerticalNodeIndent { get; set; }

Property Value

Type Description
Int32

A distance between nodes in pixels.

Property Paths

You can access this nested property as listed below:

Object Type Path to VerticalNodeIndent
SankeyDiagramControl
.ViewOptions .VerticalNodeIndent

Remarks

Use the VerticalNodeIndent property to specify the distance between nodes as shown in the image below:

The following code sets the indent to 20 pixels:

sankeyDiagramControl1.ViewOptions.VerticalNodeIndent = 20;
See Also