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

SankeyTitleDockStyle Enum

Lists values that specify the position of the diagram title.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v20.2.dll

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

Declaration

[ResourceFinder(typeof(XtraChartsResFinder))]
public enum SankeyTitleDockStyle

Members

Name Description Image
Top

The title is docked to the top of the diagram.

Bottom

The title is docked to the bottom of the diagram.

Left

The title is docked to the left side of the diagram.

Right

The title is docked to the right side of the diagram.

Related API Members

The following properties accept/return SankeyTitleDockStyle values:

Remarks

The following code creates a title and adds it to a Sankey diagram:

sankeyDiagramControl1.Titles.Add(new SankeyTitle {
    Text = "Export/Import", 
    Dock = SankeyTitleDockStyle.Top, 
    Indent = 100 
});

Related API members:

See Also