Charts for financial reports
Axes should match how finance readers talk: dollars with symbols, large totals as 1.2M, variances as percents. ChartKit formats values at the URL layer.
Formatting knobs that matter
`valueFormat=currency` plus `currencySymbol` handles non-USD tick labels when encoded properly.
`valueFormat=compact` keeps tick text short while you pass full-precision numbers in `s0`.
PNG often partners better with PDF snapshots than SVG - test your exporter.
Parameter cheat sheet: URL parameters.
Use cases
- Board decks pasted into Google Slides with a PNG chart per slide.
- Monthly PDF shareholder letters compiled from Markdown.
- Audit-friendly snapshots where the chart URL is archived next to the source spreadsheet.
Examples
Currency MRR
https://getchartkit.com/api/chart?type=bar&labels=Jan,Feb,Mar,Apr&s0=420000,445000,468000,502000&s0name=MRR&title=Trailing+MRR&valueFormat=currency¤cySymbol=%24&format=png&w=720&h=400Compact ARR (full numbers in data)
https://getchartkit.com/api/chart?type=line&labels=FY21,FY22,FY23,FY24&s0=12.4,18.9,26.2,33.5&s0name=ARR+M%24&title=ARR&valueFormat=compact&format=svg&w=760&h=420Percent changes
https://getchartkit.com/api/chart?type=bar&labels=Q1,Q2,Q3,Q4&s0=0.12,-0.03,0.08,0.05&s0name=QoQ&title=Growth+rates&valueFormat=percent&format=svgTune currency or compact formatting
Adjust fields and copy URL, HTML, Markdown, or an AI prompt. See the URL parameters reference if you are editing links by hand.
Chart options
Advanced▾
Makes X and Y axis labels larger. Applies to bar, line, area, and horizontal bar charts.
Preview
Copy
Show snippets
How it works
- Align fiscal labels (`FY24 Q1` etc.) as plain `labels` tokens - no commas inside a single label.
- Decide currency vs compact before copying the URL so stakeholders do not misread units.
- Archive the exact URL string in revision control footnotes when compliance requires traceability.
Use with ChatGPT or Claude
LLMs summarizing filings should output ChartKit URLs with explicit `valueFormat` to avoid silent defaults.
Tabular pastes: Google Sheets chart generator.
FAQ
- GAAP disclaimers?
ChartKit renders graphics; compliance text stays in your prose.
- Multi-currency?
Pick one symbol per chart; split charts if mixed currencies.
- SVG in PDF?
Depends on your PDF toolchain - PNG is the safe default.
- Markdown reports?
Yes - see charts for Markdown.
- Free for reports?
Public URLs work for drafts; institutional use should confirm terms.