Skip to content

Interactive Bar Charts

Bars are the right shape when you’re comparing totals across separate categories — cities, products, days of the week — where each category stands on its own (no implied continuity between them, unlike a line chart). Bar length is one of the easiest visual encodings for people to compare accurately, which is why bar charts are the safest default for “which is bigger?” questions.

Interactive bar
import pandas as pd
import plotly.express as px
 
df = pd.DataFrame({
    "city": ["Pune", "Delhi", "Mumbai", "Bengaluru"],
    "sales": [120, 180, 90, 160],
})
 
fig = px.bar(df, x="city", y="sales", title="Sales by city")
fig.show()
Sorted bar
import pandas as pd
import plotly.express as px
 
df = pd.DataFrame({
    "city": ["Pune", "Delhi", "Mumbai", "Bengaluru"],
    "sales": [120, 180, 90, 160],
}).sort_values("sales", ascending=False)
 
fig = px.bar(df, x="city", y="sales", title="Sales by city (sorted)")
fig.show()

Sorting by value (instead of leaving categories alphabetical) turns the chart into a ranking at a glance — the reader doesn’t have to hunt for the tallest bar.

Horizontal
import plotly.express as px
 
fig = px.bar(df, x="sales", y="city", orientation="h", title="Sales by city")
fig.show()

Horizontal bars are handy when category labels are long — they read left-to-right instead of getting squeezed or rotated on the x-axis.

sketch Bars respond to your mouse — hover one p5.js
Move your cursor over the canvas; the bar under it lifts in amber, mimicking a Plotly hover tooltip.
  • Sort by value when ranking matters more than alphabetical order.
  • Use color= to add a second grouping dimension (e.g. region) alongside category.
  • Keep the y-axis starting at zero — a truncated axis makes bar-height comparisons misleading.
diagram Bar chart hover interaction mermaid
What happens client-side when a reader moves the mouse over a bar.

Continue to: Interactive Scatter Plots for exploring relationships between two variables.

pch.coffeeTagline

pch.coffeeCta

pch.feedbackHeading

pch.feedbackSubheading