SankeyBorderOptions Class
In This Article
Contains settings for the diagram border.
Namespace: DevExpress.XtraCharts.Sankey
Assembly: DevExpress.XtraCharts.v24.2.dll
NuGet Package: DevExpress.Charts
#Declaration
#Related API Members
The following members return SankeyBorderOptions objects:
#Remarks
#Example
The following code example specifies the border color and thickness for a Sankey diagram:
using DevExpress.XtraCharts.Sankey;
using System.Drawing;
//...
private void Form1_Load(object sender, EventArgs e) {
sankeyDiagramControl1.BorderOptions.Color = Color.DarkGray;
sankeyDiagramControl1.BorderOptions.Thickness = 2;
}
See Also