| month | Projects published |
|---|---|
| January | 24 |
| February | 31 |
| March | 28 |
| April | 35 |
| May | 42 |
| June | 38 |
<Chart.YAxis />API
| Prop | Type | Default | |
|---|---|---|---|
axisLine | boolean | false | Draw the line along the axis itself. |
hide | boolean | false | Keeps the scale but draws nothing — the axis still shapes the plot. |
minTickGap | number | 4 | Minimum pixels between two labels before ticks start being dropped. |
tickCount | number | 5 | Target number of ticks. The scale rounds it to readable intervals. |
tickFormatter | ((value: string | number) => string) | — | Formats each label. Use it for units and locale. |
tickLine | boolean | false | Draw the short mark beside each label. |
tickMargin | number | 8 | Gap between the axis and its labels. |
Plus every <g> prop. Source: chart/components/chart-y-axis.tsx.
hide keeps the scale and draws nothing, which is what you want behind bars
that carry their own labels.