ClassTreeMapData
Represents a data item, which holds the information for a single RadTreeMapItem.
Definition
Namespace:Telerik.Windows.Controls.TreeMap
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public abstract class TreeMapData : INotifyPropertyChanged
Inheritance: objectTreeMapData
Derived Classes:
Implements:
Properties
Children
Gets the children.
Declaration
public virtual IEnumerable Children { get; }
Property Value
The children.
DataItem
Gets or sets the data item.
Depth
Gets the depth.
HasChildren
Gets a value indicating whether this instance has children.
Declaration
public bool HasChildren { get; }
Property Value
True if this instance has children; otherwise, false.
Label
Gets the label specified by LabelPath.
LabelFormat
Gets the label format.
Declaration
public string LabelFormat { get; set; }
Property Value
The label path.
LabelPath
Gets the label path.
Declaration
public string LabelPath { get; set; }
Property Value
The label path.
ToolTip
Gets the tooltip specified by ToolTipPath.
ToolTipAvailable
Gets a value indicating if a ToolTip is available.
Declaration
public bool ToolTipAvailable { get; }
Property Value
The tool tip available.
ToolTipFormat
Gets the ToolTip format.
Declaration
public string ToolTipFormat { get; set; }
Property Value
The tool tip path.
ToolTipPath
Gets the ToolTip path.
Declaration
public string ToolTipPath { get; set; }
Property Value
The tool tip path.
ToolTipTemplate
Gets or sets the ToolTip template.
Declaration
public DataTemplate ToolTipTemplate { get; set; }
Property Value
DataTemplate
The tool tip template.
Value
Gets or sets the value.
Declaration
public abstract double Value { get; set; }
Property Value
The value.
Methods
OnChildrenChanged(IEnumerable, IEnumerable)
Called when Children changes.
Declaration
protected virtual void OnChildrenChanged(IEnumerable oldCollection, IEnumerable newCollection)
Parameters
oldCollection
The old collection.
newCollection
The new collection.
OnDataItemChanged(object, object)
Called when DataItem changed.
OnDataItemPropertyChanged(object, PropertyChangedEventArgs)
Called when a property on DataItem has changed.
Declaration
protected virtual void OnDataItemPropertyChanged(object sender, PropertyChangedEventArgs e)
Parameters
sender
The sender.
e
The PropertyChangedEventArgs instance containing the event data.
OnPropertyChanged(string)
Called when property changed.
Declaration
protected void OnPropertyChanged(string propertyName)
Parameters
propertyName
Name of the property.
ToString()
Returns a string that represents this instance.
Events
PropertyChanged
Occurs when a property value changes.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Value
Implements