New to Telerik UI for WPFStart a free 30-day trial

Represents collection of the map objects clustered using some criteria.

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public class ClusterData : INotifyPropertyChanged

Inheritance: objectClusterData

Implements: INotifyPropertyChanged

Constructors

C#
public ClusterData()

Properties

Gets or sets value which indicates whether bounding box of the cluster should be calculated automatically.

C#
public bool AutoCalculateBounds { get; set; }

Gets or sets value which indicates whether cluster should be automatically expanded when it contains 1 data item only.

C#
public bool AutoExpandWhenSingle { get; set; }

Gets or sets bounding box of the cluster.

C#
public LocationRect Bounds { get; set; }

Gets data items which belongs to this cluster.

C#
public IEnumerable<object> Children { get; }

Gets or sets state of the cluster.

C#
public ClusterState ClusterState { get; set; }

Gets number of the items in the cluster.

C#
public int Count { get; }

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.

C#
public object Data { get; set; }

Gets or sets value which indicates whether cluster should be deleted if it is empty.

C#
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.

C#
public double ExpandRadius { get; set; }

Indicates whether expanded cluster should be hidden.

C#
public bool HideExpanded { get; set; }

Gets or sets hotspot of the cluster.

C#
public HotSpot Hotspot { get; set; }

Gets or sets center of the cluster.

C#
public Location Location { get; set; }

Gets or sets ZIndex of the cluster.

C#
public int ZIndex { get; set; }

Events

Property changed event handler.

C#
public event PropertyChangedEventHandler PropertyChanged

Implements: INotifyPropertyChanged.PropertyChanged