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

    Provides access to the sankey diagram’s border settings.

    Namespace: DevExpress.XtraCharts.Sankey

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

    NuGet Package: DevExpress.Win.Charts

    Declaration

    public SankeyBorderOptions BorderOptions { get; }

    Property Value

    Type Description
    SankeyBorderOptions

    Storage for border settings.

    Remarks

    The code below configures a sankey diagram’s border settings:

    using System.Drawing;
    //...
    private void Form1_Load(object sender, EventArgs e) {
        sankeyDiagramControl1.BorderOptions.Color = Color.Gray;
        sankeyDiagramControl1.BorderOptions.Thickness = 2;
    }
    
    See Also