# Bubble Charts

## Content



The following image represents the Bubble chart when you set **ChartType** property to **Bubble**:

![](https://cdn.mescius.io/document-site-files/images/9e1b6c55-78c5-4648-896a-23e777db9f27/images/graphics/bubblechart.png)

The following XAML markup creates a **Bubble** chart:

```xml
<c1chart:C1Chart ChartType="Bubble"
       c1chart:BubbleOptions.MinSize="5,5"
       c1chart:BubbleOptions.MaxSize="30,30"
       c1chart:BubbleOptions.Scale="Area">
    <c1chart:C1Chart.Data>
      <c1chart:ChartData>
        <c1chart:BubbleSeries Values="20 22 19 24 25" SizeValues="1 2 3 2 1" />
        <c1chart:BubbleSeries Values="8 12 10 12 15" SizeValues="3 2 1 2 3"/>
      </c1chart:ChartData>
    </c1chart:C1Chart.Data>
  </c1chart:C1Chart>
```

## See Also

[Candle Chart](/componentone/docs/wpf/online-chart/overview/Types/Candle)