SankeyDiagramControl.BorderOptions Property
Provides access to the sankey diagram’s border settings.
Namespace: DevExpress.XtraCharts.Sankey
Assembly: DevExpress.XtraCharts.v24.2.UI.dll
NuGet Package: DevExpress.Win.Charts
#Declaration
public SankeyBorderOptions BorderOptions { get; }
#Property Value
Type | Description |
---|---|
Sankey |
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;
}