Skip to content

Bubble Charts

A bubble chart is a scatter plot where marker size carries a third variable, so a single point communicates three numbers at once:

  • x axis = metric 1
  • y axis = metric 2
  • bubble size = metric 3 (volume/magnitude)

Add color and you’re encoding a fourth variable too — which is exactly what px.scatter(..., size=...) gives you; a bubble chart isn’t a separate chart type in Plotly, it’s a scatter plot with the size argument filled in.

Bubble chart
import pandas as pd
import plotly.express as px
 
df = pd.DataFrame({
    "city": ["Pune", "Delhi", "Mumbai", "Bengaluru"],
    "sales": [120, 180, 90, 160],
    "profit": [30, 45, 10, 35],
    "orders": [200, 350, 120, 280],
})
 
fig = px.scatter(
    df,
    x="sales",
    y="profit",
    size="orders",
    color="city",
    hover_name="city",
    title="Sales vs Profit (bubble size = orders)",
)
fig.show()

Plotly scales bubble area (not raw radius) to the size column by default, which is the perceptually correct choice — doubling a value should roughly double the visual area, not the diameter.

sketch Bubble size encodes a third metric p5.js
x = sales, y = profit, bubble area = orders — bigger bubble means more orders, independent of position.
  • Keep sizes reasonable; very large bubbles hide others — cap the biggest bubble at a sensible max area.
  • Use hover tooltips (hover_name) to reduce label clutter instead of printing every city name on the chart.
  • Watch out for overlap: when bubbles are close together, consider adding opacity so overlapping regions stay readable.
diagram Bubble chart = scatter + a size channel mermaid
A bubble chart layers a third numeric variable onto marker size, and optionally a fourth onto color.

Continue to: Sunburst Charts for visualizing hierarchical data.

Exercise 1 – Turn a Scatter into a Bubble Chart

Section titled “Exercise 1 – Turn a Scatter into a Bubble Chart”

Exercise 2 – Reduce Label Clutter with hover_name

Section titled “Exercise 2 – Reduce Label Clutter with hover_name”

Exercise 3 – Add a Fourth Variable with Color

Section titled “Exercise 3 – Add a Fourth Variable with Color”

pch.coffeeTagline

pch.coffeeCta

pch.feedbackHeading

pch.feedbackSubheading