ExtendedDataProvider
Base class for all objects which can contain extended data (MapShapeData, PointData etc).
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public abstract class ExtendedDataProvider : IExtendedData, INotifyPropertyChanged
Inheritance: objectExtendedDataProvider
Derived Classes:
Implements:
Constructors
protected ExtendedDataProvider()
Properties
Gets or sets extended data.
public ExtendedData ExtendedData { get; set; }
Implements:
Visualization layer this map cell belongs to.
public VisualizationLayer Layer { get; set; }
Gets or sets tooltip format. Either ToolTipFormat or ToolTipTemplate should be specified. If both properties are set, then ToolTipTemplate will be used.
public string ToolTipFormat { get; set; }
ToolTipStyle
Style
Gets or sets the style applied to the toolTip.
public Style ToolTipStyle { get; set; }
ToolTipTemplate
DataTemplate
Gets or sets tooltip content template. Either ToolTipFormat or ToolTipTemplate should be specified. If both properties are set, then ToolTipTemplate will be used. You can bind elements in the tooltip template to extended properties using Data property of the ExtendedData object.
public DataTemplate ToolTipTemplate { get; set; }
Methods
Arrange item according to its Location.
protected abstract void Arrange()
Raise PropertyChanged event.
protected void OnPropertyChanged(string propertyName)
Property name.
Events
Property changed event handler.
public event PropertyChangedEventHandler PropertyChanged
Implements: