Show / Hide Table of Contents

Class TreeMapItemDefinition

Represents a class that defines various aspects of TreeMap items.

Inheritance
System.Object
TreeMapItemDefinition
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls.DataVisualization
Assembly: OpenSilver.Controls.DataVisualization.Toolkit.dll
Syntax
public class TreeMapItemDefinition : INotifyPropertyChanged

Constructors

| Improve this Doc View Source

TreeMapItemDefinition()

Initializes a new instance of the TreeMapItemDefinition class.

Declaration
public TreeMapItemDefinition()

Properties

| Improve this Doc View Source

ChildItemPadding

Gets or sets a property representing the amount of space to leave between a parent item and its children.

Declaration
public Thickness ChildItemPadding { get; set; }
Property Value
Type Description
Thickness
| Improve this Doc View Source

ItemsSource

Gets or sets the binding that indicates where to find the collection that represents the next level in the data hierarchy.

Declaration
public Binding ItemsSource { get; set; }
Property Value
Type Description
Binding
| Improve this Doc View Source

ItemTemplate

Gets or sets a value representing the DataTemplate to instantiate in order to create a representation of each TreeMap item.

Declaration
public DataTemplate ItemTemplate { get; set; }
Property Value
Type Description
DataTemplate
| Improve this Doc View Source

ValueBinding

Gets or sets a value representing a binding which can be used to retrieve the value associated with each item, needed to calculate relative areas of TreeMap items.

Declaration
public Binding ValueBinding { get; set; }
Property Value
Type Description
Binding
| Improve this Doc View Source

ValuePath

Gets or sets the Value Path used to set ValueBinding for retrieving the value associated with each item, needed to calculate relative areas of TreeMap items.

Declaration
public string ValuePath { get; set; }
Property Value
Type Description
System.String

Methods

| Improve this Doc View Source

NotifyPropertyChanged(String)

Updates the TreeMap if one of properties changes.

Declaration
protected void NotifyPropertyChanged(string parameterName)
Parameters
Type Name Description
System.String parameterName

The parameter name.

Events

| Improve this Doc View Source

PropertyChanged

PropertyChanged event required by INotifyPropertyChanged.

Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type Description
System.ComponentModel.PropertyChangedEventHandler

Implements

System.ComponentModel.INotifyPropertyChanged
  • Improve this Doc
  • View Source