Skip to main content
All docs
V23.2

SankeyDiagramControl.BorderOptions Property

Provides access to the sankey diagram’s border settings.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v23.2.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