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

TreeMapHierarchicalDataAdapter.ValueDataMember Property

Gets or sets the name of the data field whose values are used to specify values of tree map items.

Namespace: DevExpress.Xpf.TreeMap

Assembly: DevExpress.Xpf.TreeMap.v19.1.dll

Declaration

public string ValueDataMember { get; set; }

Property Value

Type Description
String

A String value.

Example

To provide hierarchical data to the Tree Map, do the following.

<Window.Resources>
    <HierarchicalDataTemplate 
        DataType="{x:Type local:SideOfWorld}"
        ItemsSource="{Binding Countries}">
        <TextBlock 
            Margin="4,4,4,-3"
            Padding="4,2,0,2"
            Text="{Binding Name}"
            Foreground="White"
            Background="Gray"/>
    </HierarchicalDataTemplate>
    <DataTemplate
        DataType="{x:Type local:Country}">
        <Grid>
            <TextBlock 
                Padding="4,2,0,0"
                Text="{Binding Name}" 
                TextWrapping="WrapWithOverflow" 
                TextTrimming="WordEllipsis"/>
            <Border 
                BorderThickness="1" 
                BorderBrush="#60000000"/>
        </Grid>
    </DataTemplate>
</Window.Resources>

<Grid>
    <dxtm:TreeMapControl>
        <dxtm:TreeMapControl.Colorizer>
            <dxtm:TreeMapPaletteColorizer>
                <dxtm:Office2013Palette/>
            </dxtm:TreeMapPaletteColorizer>
        </dxtm:TreeMapControl.Colorizer>
        <dxtm:TreeMapHierarchicalDataAdapter
            DataSource="{Binding}"
            ValueDataMember="Gdp">
        </dxtm:TreeMapHierarchicalDataAdapter>
    </dxtm:TreeMapControl>
</Grid>

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ValueDataMember property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also