Skip to main content
All docs
V23.2

SankeyPaletteColorizer.LinkBrush Property

Specifies the Sankey link color.

Namespace: DevExpress.Xpf.Charts.Sankey

Assembly: DevExpress.Xpf.Charts.v23.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

public Brush LinkBrush { get; set; }

Property Value

Type Description
Brush

The Sankey link color.

Remarks

The following example uses the Gray color to colorize links:

Sankey Palette colorizer

 <dxsa:SankeyDiagramControl.Colorizer>
    <dxsa:SankeyPaletteColorizer  LinkBrush="Gray">
        <dxsa:SankeyPaletteColorizer.Palette>
            <dxc:NorthernLightsPalette/>
        </dxsa:SankeyPaletteColorizer.Palette>
    </dxsa:SankeyPaletteColorizer>
</dxsa:SankeyDiagramControl.Colorizer>
See Also