Skip to main content
All docs
V23.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.v23.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