ClusterData
Represents collection of the map objects clustered using some criteria.
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public class ClusterData : INotifyPropertyChanged
Inheritance: objectClusterData
Implements:
Constructors
public ClusterData()
Properties
Gets or sets value which indicates whether bounding box of the cluster should be calculated automatically.
public bool AutoCalculateBounds { get; set; }
Gets or sets value which indicates whether cluster should be automatically expanded when it contains 1 data item only.
public bool AutoExpandWhenSingle { get; set; }
Gets or sets bounding box of the cluster.
public LocationRect Bounds { get; set; }
Gets data items which belongs to this cluster.
public IEnumerable<object> Children { get; }
Gets or sets state of the cluster.
public ClusterState ClusterState { get; set; }
Gets or sets additional cluster's data. This data can be used to pass extra information to the cluster's data template or by cluster generator when detecting belonging of the item to the particular cluster.
public object Data { get; set; }
Gets or sets value which indicates whether cluster should be deleted if it is empty.
public bool DeleteWhenEmpty { get; set; }
Gets or sets radius (in pixels) which will be used to calculate coordinates of the items when cluster is expanded to the polygon vertices.
public double ExpandRadius { get; set; }
Indicates whether expanded cluster should be hidden.
public bool HideExpanded { get; set; }
Events
Property changed event handler.
public event PropertyChangedEventHandler PropertyChanged
Implements: