Back to Devexpress

SankeyDiagramControl.Titles Property

windowsforms-devexpress-dot-xtracharts-dot-sankey-dot-sankeydiagramcontrol.md

latest1.6 KB
Original Source

SankeyDiagramControl.Titles Property

Provides access to the diagram’s title collection.

Namespace : DevExpress.XtraCharts.Sankey

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

NuGet Package : DevExpress.Win.Charts

Declaration

csharp
public SankeyTitleCollection Titles { get; }
vb
Public ReadOnly Property Titles As SankeyTitleCollection

Property Value

TypeDescription
SankeyTitleCollection

A collection of titles.

|

Remarks

The code below adds a title to a Sankey Diagram:

csharp
sankeyDiagramControl1.Titles.Add(new SankeyTitle { Text = "Export/Import" });
vb
sankeyDiagramControl1.Titles.Add(New SankeyTitle With {
            .Text = "Export/Import"
        })

See Also

SankeyDiagramControl Class

SankeyDiagramControl Members

DevExpress.XtraCharts.Sankey Namespace