| month | Projects published | Proposals accepted |
|---|---|---|
| January | 24 | 18 |
| February | 31 | 22 |
| March | 28 | 25 |
| April | 35 | 30 |
| May | 42 | 36 |
| June | 38 | 33 |
y={{ keys: ["projects", "bookings"], stacked: true }}API
Stacked bars are Chart.Bars with stacked set on both
the mark and the value axis; there is no separate component, so the props are
the same ones.
| Prop | Type | Default | |
|---|---|---|---|
fill | ((datum: Record<string, unknown>, index: number) => string) | — | Per-datum fill, for charts coloured by row rather than by series. |
gap | number | — | Pixels between two bars of the same category. |
keys | readonly string[] | — | Series to draw. Defaults to the root's value keys. |
radius | number | 4 | Corner radius of each bar, in pixels. |
stacked | boolean | — | Stacks the series into one bar per category instead of grouping them side by side. |
Plus every <g> prop. Source: chart/components/chart-bars.tsx.