| month | Projects published |
|---|---|
| January | 24 |
| February | 31 |
| March | 28 |
| April | 35 |
| May | 42 |
| June | 38 |
<Chart.Line />API
| Prop | Type | Default | |
|---|---|---|---|
curve | ChartCurve | "monotone" | How points are joined: linear, monotone or step. |
dots | boolean | false | Draw a dot on every point, not only the active one. |
keys | readonly string[] | — | Series to draw. Defaults to the root's value keys. |
strokeWidth | number | 2 | Width of the line, in pixels. |
Plus every <g> prop. Source: chart/components/chart-line.tsx.
curve is the one to think about: monotone smooths without overshooting real
values, step is honest about readings that hold between samples, and linear
claims nothing about what happened in between.