ColorValuePath in WPF TreeMap (SfTreeMap)

10 May 20211 minute to read

The ColorValuePath ofSfTreeMap is a path to a field on the source object, which serves as the “color” of the object.

  • XAML
  • <Grid Background="Black">
    
            <Grid.DataContext>
    
                <local:PopulationViewModel/>
    
            </Grid.DataContext>
    
            <syncfusion:SfTreeMap ItemsSource="{Binding PopulationDetails}" 
    
                                  ColorValuePath="Growth"/>
    
        </Grid>

    NOTE

    The specified field must be available in each and every sub class (object) defined in hierarchical (nested) data collection.