Skip to main content
All docs
V23.2

SankeyDiagramControl.Titles Property

Provides access to the diagram’s title collection.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v23.2.UI.dll

NuGet Package: DevExpress.Win.Charts

Declaration

public SankeyTitleCollection Titles { get; }

Property Value

Type Description
SankeyTitleCollection

A collection of titles.

Remarks

sankey diagram elements

The code below adds a title to a Sankey Diagram:

sankeyDiagramControl1.Titles.Add(new SankeyTitle { Text = "Export/Import" });
See Also