Skip to main content
A newer version of this page is available. .

TreeMapControl.Colorizer Property

Gets or sets the colorizer used to colorize TreeMap items.

Namespace: DevExpress.XtraTreeMap

Assembly: DevExpress.XtraTreeMap.v21.2.UI.dll

NuGet Packages: DevExpress.Win.Design, DevExpress.Win.TreeMap

Declaration

public ITreeMapColorizer Colorizer { get; set; }

Property Value

Type Description
ITreeMapColorizer

An object of a class implementing the ITreeMapColorizer interface.

Example

To color TreeMap using a Palette, assign a TreeMapPaletteColorizer object to the TreeMapControl.Colorizer property. To color all group items using one color, set the TreeMapPaletteColorizer.ColorizeGroups property of the colorizer to true. To specify a palette that should be used to color items, assign an instance of the Palette derived class to the TreeMapPaletteColorizerBase.Palette property of the colorizer.

View Example

void ConfigureTreeMapColorizer() {
    treeMap.Colorizer = new TreeMapPaletteColorizer {
        ColorizeGroups = true,
        Palette = Palette.Office2016Palette
    };
}
See Also