Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TreeMapControl.TreeMapStyle Property

Gets or sets the treemap appearance settings.

Namespace: DevExpress.Xpf.TreeMap

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

NuGet Package: DevExpress.Wpf.TreeMap

#Declaration

public TreeMapStyle TreeMapStyle { get; set; }

#Property Value

Type Description
TreeMapStyle

Stores settings that specify the treemap appearance.

#Remarks

The following example shows how to configure treemap style settings:

<dxtm:TreeMapControl>
    <dxtm:TreeMapControl.TreeMapStyle>
        <dxtm:TreeMapStyle GroupBackground="White" GroupForeground="Gray" 
                           GroupFontFamily="Segoe UI" GroupFontSize="14" 
                           GroupFontStyle="Italic" GroupFontWeight="Bold" 
                           LeafFontFamily="Segoe UI Light" LeafFontSize="12" 
                           LeafFontWeight="Light" LeafFontStyle="Normal"/>
    </dxtm:TreeMapControl.TreeMapStyle>
    <!--...-->
</dxtm:TreeMapControl>
See Also