Appearance
Are you an LLM? You can read better optimized documentation at /embed/docs/chart-types.md for this page in Markdown format
Chart types
Each type page follows the same pattern: identity (incl. option bag) → minimal chartData → seriesData → bag fields → axes → pitfalls → sample.
The Type column links to the docs page. chartType is the identifier you pass in chartData. Bag is the cd.<bag> object that type reads.
| Type | chartType | Option bag | seriesData layout | Sample |
|---|---|---|---|---|
| Clustered bar | clusteredBar | bar | seriesRows | sample |
| Stacked bar / 100% | stackedBar · stackedBar100 | bar | seriesRows | sample |
| Line | line | line | seriesRows | sample |
| Stacked area / 100% | stackedArea · stackedArea100 | area | seriesRows | sample |
| Pie / donut | pie · donut | pie | categoryValue | sample |
| Scatter / bubble | scatter · bubble | scatter | pointRows | sample |
| Waterfall | waterfall | waterfall | seriesRows | sample |
| Marimekko | mekko | mekko | seriesRows | sample |
| Bar Mekko | barMekko | barMekko | widthRowThenHeightRows | sample |
| Combo | combo | combo | seriesRows | sample |
Shared bags: bar covers clustered + stacked (+ 100%); area covers both stacked area variants. Mekko and Bar Mekko use different bags.
Also: horizontal bar (clustered bar + orientation: 'horizontal'), chartData schema, Axes · by chart type, and the samples gallery.