windowsforms-devexpress-dot-xtracharts-dot-sankey-dot-sankeydiagramcontrol-8a20f50e.md
Provides access to node label settings.
Namespace : DevExpress.XtraCharts.Sankey
Assembly : DevExpress.XtraCharts.v25.2.UI.dll
NuGet Package : DevExpress.Win.Charts
public SankeyNodeLabel NodeLabel { get; }
Public ReadOnly Property NodeLabel As SankeyNodeLabel
| Type | Description |
|---|---|
| SankeyNodeLabel |
Contains settings for node labels.
|
Use the following properties to customize node label options:
FontMaxLineCountMaxWidthTextAlignmentTextOrientation
sankeyDiagramControl1.NodeLabel.TextOrientation = TextOrientation.TopToBottom;
sankeyDiagramControl1.NodeLabel.MaxWidth = 200;
sankeyDiagramControl1.NodeLabel.MaxLineCount = 1;
sankeyDiagramControl1.NodeLabel.TextAlignment = StringAlignment.Center;
sankeyDiagramControl1.NodeLabel.Font = new Font(FontFamily.GenericSerif, 10);
sankeyDiagramControl1.NodeLabel.TextOrientation = TextOrientation.TopToBottom
sankeyDiagramControl1.NodeLabel.MaxWidth = 200
sankeyDiagramControl1.NodeLabel.MaxLineCount = 1
sankeyDiagramControl1.NodeLabel.TextAlignment = StringAlignment.Center
sankeyDiagramControl1.NodeLabel.Font = New Font(FontFamily.GenericSerif, 10)
See Also