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

SankeyDiagramControl.Titles Property

Provides access to the diagram’s title collection.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v20.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