Bubble cloud chart
info
Charts are available with Avalonia Pro.
Bubble cloud charts place bubbles in a clustered, non-axis layout where size carries the main quantitative meaning.
When to use
- Category emphasis: Show which categories dominate without needing precise axes.
- Attention maps: Surface important topics, segments, or products in a compact visual.
- Dashboard tiles: Add a more organic alternative to bars or tables.
Code example
XAML
<charts:BubbleCloud Title="Topic volume"
Height="320"
ItemsSource="{Binding Topics}"
LabelPath="Name"
ValuePath="Count" />
Data model (C#)
public record TopicBubble(string Name, double Count);
public ObservableCollection<TopicBubble> Topics { get; } = new()
{
new("Support", 120),
new("Billing", 75),
new("Shipping", 55)
};
Common properties
| Property | Description | Default |
|---|---|---|
ItemsSource | Collection of bubble items. | null |
LabelPath | Path to the bubble label. | null |
ValuePath | Path to the value used for bubble size. | null |
MinBubbleSize | Minimum bubble radius in pixels. | 30.0 |
MaxBubbleSize | Maximum bubble radius in pixels. | 80.0 |
IsHighlightEnabled | Enables hover highlighting for bubbles. | false |