Back to Devexpress

SankeyTitleDockStyle Enum

corelibraries-devexpress-dot-xtracharts-dot-sankey-5dd3327a.md

latest2.5 KB
Original Source

SankeyTitleDockStyle Enum

Lists values that specify the position of the diagram title.

Namespace : DevExpress.XtraCharts.Sankey

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
[ResourceFinder(typeof(XtraChartsResFinder))]
public enum SankeyTitleDockStyle
vb
<ResourceFinder(GetType(XtraChartsResFinder))>
Public Enum SankeyTitleDockStyle

Members

NameDescriptionImage
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.

|

|

The following properties accept/return SankeyTitleDockStyle values:

Remarks

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

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

Related API members:

See Also

DevExpress.XtraCharts.Sankey Namespace