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