Skip to main content
All docs
V25.1
  • SunburstGroupGradientColorizer.Min Property

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

    Namespace: DevExpress.Xpf.TreeMap

    Assembly: DevExpress.Xpf.TreeMap.v25.1.dll

    NuGet Package: DevExpress.Wpf.TreeMap

    Declaration

    public double Min { 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