Back to Devexpress

SankeyBorderOptions Class

corelibraries-devexpress-dot-xtracharts-dot-sankey-c7240487.md

latest1.9 KB
Original Source

SankeyBorderOptions Class

Contains settings for the diagram border.

Namespace : DevExpress.XtraCharts.Sankey

Assembly : DevExpress.XtraCharts.v25.2.dll

NuGet Package : DevExpress.Charts

Declaration

csharp
public class SankeyBorderOptions :
    IXtraSupportShouldSerialize
vb
Public Class SankeyBorderOptions
    Implements IXtraSupportShouldSerialize

The following members return SankeyBorderOptions objects:

Remarks

Example

The following code example specifies the border color and thickness for a Sankey diagram:

csharp
using DevExpress.XtraCharts.Sankey;
using System.Drawing;
//...
  private void Form1_Load(object sender, EventArgs e) {
      sankeyDiagramControl1.BorderOptions.Color = Color.DarkGray;
      sankeyDiagramControl1.BorderOptions.Thickness = 2;
  }
vb
Imports DevExpress.XtraCharts.Sankey
Imports System.Drawing
'...
  Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
      sankeyDiagramControl1.BorderOptions.Color = Color.DarkGray
      sankeyDiagramControl1.BorderOptions.Thickness = 2
  End Sub

Inheritance

Object SankeyBorderOptions

See Also

SankeyBorderOptions Members

DevExpress.XtraCharts.Sankey Namespace