Back to Devexpress

SunburstGroupGradientColorizer.Mode Property

wpf-devexpress-dot-xpf-dot-treemap-dot-sunburstgroupgradientcolorizer.md

latest2.8 KB
Original Source

SunburstGroupGradientColorizer.Mode Property

Gets or sets the mode that defines how to distribute a gradient across sectors.

Namespace : DevExpress.Xpf.TreeMap

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

NuGet Package : DevExpress.Wpf.TreeMap

Declaration

csharp
public GradientColorizerMode Mode { get; set; }
vb
Public Property Mode As GradientColorizerMode

Property Value

TypeDescription
GradientColorizerMode

The gradient distribution’s mode.

|

Available values:

NameDescriptionImage
ByGroupLevel

Sectors have the same color if they belong to the same top-level sector. A color’s transparency increases from the top-level sectors to low-level sectors.

|

| | ByItemIndex |

Sectors in the same group have the same base color. A color’s transparency increases with higher indexes in this group.

|

|

Remarks

The following table lists available modes:

ModeImageDescription
GradientColorizerMode.ByGroupLevel (default)Sectors have the same base color if they belong to the same top-level sector. A color’s transparency increases from the top-level sectors to low-level sectors.
GradientColorizerMode.ByItemIndexSectors in the same group have the same base color. A color’s transparency increases when the sector index is increased.

Example

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

xaml
<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

SunburstGroupGradientColorizer Class

SunburstGroupGradientColorizer Members

DevExpress.Xpf.TreeMap Namespace