New to Telerik UI for WPF? Start a free 30-day trial
Show Clustering Bubble For Single Item in RadMap
Updated on Sep 24, 2025
Environment
| Product | RadMap for WPF |
Description
How to show clustering bubble for single item in RadMap.
Solution
-
Create a class inheriting DefaultClusterGenerator and set its AutoExpandWhenSingle property to False.
C#public class CustomClusterGenerator : DefaultClusterGenerator { public CustomClusterGenerator() { this.AutoExpandWhenSingle = false; } } -
Set the CustomClusterGenerator to the ClusterGenerator property of the RadMap.
XAML<telerik:RadMap > <telerik:RadMap.Resources> <local:CustomClusterGenerator x:Key="CustomClusterGenerator" /> </telerik:RadMap.Resources> <telerik:VisualizationLayer ClusteringEnabled="True" ClusterGenerator="{StaticResource CustomClusterGenerator}"> </telerik:VisualizationLayer> </telerik:RadMap>
The namespace "local" refers to the namespace, where the "CustomClusterGenerator" class is defined.