TreeMapControl.TreeMapStyle Property
Gets or sets the treemap appearance settings.
Namespace: DevExpress.Xpf.TreeMap
Assembly: DevExpress.Xpf.TreeMap.v24.1.dll
NuGet Package: DevExpress.Wpf.TreeMap
Declaration
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