Skip to main content
A newer version of this page is available. .
All docs
V20.2

SankeyBorderOptions Class

Contains settings for the diagram border.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v20.2.dll

NuGet Packages: DevExpress.Charts, DevExpress.WindowsDesktop.Charts

Declaration

public class SankeyBorderOptions :
    IXtraSupportShouldSerialize

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;
  }

Inheritance

Object
SankeyBorderOptions
See Also