Gallery¶
Every chart type charted can render. All 15 examples below were generated by charted itself from real-ish datasets. No screenshots, no stubs.
15 chart types. All dogfooded.
Each chart below was rendered by charted from real-ish data. Pick a type, follow the link to its full docs.
Themes¶
The same chart rendered under each built-in theme. Pass theme="light",
theme="dark", or theme="high-contrast" to any chart constructor.
from charted import ColumnChart
chart = ColumnChart(
data=[120, 180, 210, 150],
labels=["Q1", "Q2", "Q3", "Q4"],
title="Sales by Quarter",
theme="dark", # or "light", "high-contrast"
)
chart.save("themed.svg")
See Theming Guide for the full theme and palette API.