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

TreeMapStyle Class

The tree map appearance settings storage.

Namespace: DevExpress.Xpf.TreeMap

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

NuGet Package: DevExpress.Wpf.TreeMap

Declaration

public class TreeMapStyle :
    DependencyObject,
    INotifyPropertyChanged,
    IPatternHolder,
    ISupportFontSettings

The following members return TreeMapStyle objects:

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>

Inheritance

See Also