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

SankeyViewOptions.LinkTransparency Property

Gets or sets link transparency.

Namespace: DevExpress.XtraCharts.Sankey

Assembly: DevExpress.XtraCharts.v20.2.dll

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

Declaration

[XtraChartsLocalizableCategory(XtraChartsCategory.Appearance)]
public byte LinkTransparency { get; set; }

Property Value

Type Description
Byte

A value between 0 (opaque) and 255 (transparent).

Property Paths

You can access this nested property as listed below:

Object Type Path to LinkTransparency
SankeyDiagramControl
.ViewOptions .LinkTransparency

Remarks

The following code makes links opaque:

sankeyDiagramControl1.ViewOptions.LinkTransparency = 0;
See Also