Skip to main content
All docs
V25.1
  • SankeyDiagramControl.NodeLabel Property

    Provides access to node label settings.

    Namespace: DevExpress.XtraCharts.Sankey

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

    NuGet Package: DevExpress.Win.Charts

    Declaration

    public SankeyNodeLabel NodeLabel { get; }

    Property Value

    Type Description
    SankeyNodeLabel

    Contains settings for node labels.

    Remarks

    Use the following properties to customize node label options:

    Font MaxLineCount MaxWidth TextAlignment TextOrientation

    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