Skip to main content
All docs
V25.1
  • SankeyBorderOptions.Thickness Property

    Gets or sets the diagram border’s thickness in pixels.

    Namespace: DevExpress.XtraCharts.Sankey

    Assembly: DevExpress.XtraCharts.v25.1.dll

    NuGet Package: DevExpress.Charts

    Declaration

    public int Thickness { get; set; }

    Property Value

    Type Description
    Int32

    The border thickness in pixels.

    Property Paths

    You can access this nested property as listed below:

    Object Type Path to Thickness
    SankeyDiagramControl
    .BorderOptions .Thickness

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

    The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Thickness property.

    Note

    The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

    See Also