corelibraries-devexpress-dot-xtracharts-dot-sankey-764d4bcd.md
A title for Sankey diagrams.
Namespace : DevExpress.XtraCharts.Sankey
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
public class SankeyTitle :
SankeyTextElement,
IXtraSupportShouldSerialize
Public Class SankeyTitle
Inherits SankeyTextElement
Implements IXtraSupportShouldSerialize
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
});
sankeyDiagramControl1.Titles.Add(New SankeyTitle With {
.Text = "Export/Import",
.Dock = SankeyTitleDockStyle.Bottom,
.Indent = 100
})
Related API members:
Object SankeyTextElement SankeyTitle
See Also