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

SunburstGroupGradientColorizer.GradientColor Property

Gets or sets the color that should be blended with the sunburst sector color.

Namespace: DevExpress.Xpf.TreeMap

Assembly: DevExpress.Xpf.TreeMap.v21.2.dll

NuGet Package: DevExpress.Wpf.TreeMap

Declaration

public Color GradientColor { get; set; }

Property Value

Type Description
Color

A color that is blended with the sunburst sector color.

Remarks

The following code configures and applies a SunburstGroupGradientColorizer to a Sunburst chart:

<dxtm:SunburstControl>
    <dxtm:SunburstGroupGradientColorizer Mode="ByItemIndex" 
                                         Max="1" Min="0.6" 
                                         GradientColor="Black">
        <dxtm:SunburstGroupGradientColorizer.Palette>
            <dxtm:NorthernLightsPalette/>
        </dxtm:SunburstGroupGradientColorizer.Palette>
    </dxtm:SunburstGroupGradientColorizer>
</dxtm:SunburstControl>
See Also