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

SunburstGroupGradientColorizer.Max Property

Gets or sets the color intensity of the sunburst top level sectors.

Namespace: DevExpress.Xpf.TreeMap

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.TreeMap, DevExpress.Wpf.TreeMap

Declaration

public double Max { get; set; }

Property Value

Type Description
Double

A numeric value from 0 (transparent) to 1 (opaque).

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