Skip to main content
All docs
V23.2

SankeyViewOptions.VerticalNodeIndent Property

Gets or sets the indent between nodes in pixels.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.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