SankeyDiagramControl.BorderOptions Property
Provides access to the sankey diagram’s border settings.
Namespace: DevExpress.XtraCharts.Sankey
Assembly: DevExpress.XtraCharts.v24.1.UI.dll
NuGet Package: DevExpress.Win.Charts
Declaration
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