Skip to main content

TreeMapPaletteColorizerBase.Palette Property

Gets or sets the palette used to color tree map items by the colorizer.

Namespace: DevExpress.Xpf.TreeMap

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

NuGet Package: DevExpress.Wpf.TreeMap

Declaration

public PaletteBase Palette { get; set; }

Property Value

Type Description
PaletteBase

A PaletteBase class descendant object.

Example

To color tree map items using the Palette Colorizer, do the following.

<dxtm:TreeMapControl.Colorizer>
    <dxtm:TreeMapPaletteColorizer 
        ColorizeGroups="True">
        <dxtm:Office2016Palette/>
    </dxtm:TreeMapPaletteColorizer>
</dxtm:TreeMapControl.Colorizer>
See Also