wpf-devexpress-dot-xpf-dot-treemap-dot-treemapcontrol-9b1521d6.md
Gets or sets the template used to display the group header’s content in a treemap.
Namespace : DevExpress.Xpf.TreeMap
Assembly : DevExpress.Xpf.TreeMap.v25.2.dll
NuGet Package : DevExpress.Wpf.TreeMap
[NonCategorized]
public DataTemplate GroupHeaderContentTemplate { get; set; }
<NonCategorized>
Public Property GroupHeaderContentTemplate As DataTemplate
| Type | Description |
|---|---|
| DataTemplate |
A DataTemplate object that specifies the template used to display the group header.
|
The following example customizes appearance of treemap group headers:
<local:TreeMapDemoModule
x:Class="TreeMapDemo.Selection"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:dxc="http://schemas.devexpress.com/winfx/2008/xaml/charts"
xmlns:dxct="http://schemas.devexpress.com/winfx/2008/xaml/charts/themekeys"
xmlns:dxi="http://schemas.devexpress.com/winfx/2008/xaml/core/internal"
xmlns:dxt="http://schemas.devexpress.com/winfx/2008/xaml/core/themekeys"
xmlns:dxm="http://schemas.devexpress.com/winfx/2008/xaml/map"
xmlns:dxtm="http://schemas.devexpress.com/winfx/2008/xaml/treemap"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TreeMapDemo">
<Grid>
<dxtm:TreeMapControl x:Name="treeMap">
<dxtm:TreeMapControl.TreeMapStyle>
<dxtm:TreeMapStyle
GroupBackground="Transparent"
GroupFontSize="12" />
</dxtm:TreeMapControl.TreeMapStyle>
<dxtm:TreeMapControl.GroupHeaderContentTemplate>
<DataTemplate>
<TextBlock
Text="{Binding Label}"
Foreground="{dxi:ThemeResource {dxct:ChartBrushesThemeKey ResourceKey=TitleForeground}}"
FontWeight="{Binding FontWeight}"
FontSize="{Binding FontSize}"
TextTrimming="WordEllipsis"
Margin="4" />
</DataTemplate>
</dxtm:TreeMapControl.GroupHeaderContentTemplate>
</Grid>
</local:TreeMapDemoModule>
See Also