LineChart
A line chart for visualising trends over time, supporting multiple series.
Installation
npx dafink-ui add line-chartRequires: recharts
Demo
Props
| Name | Type | Default | Description |
|---|---|---|---|
| data | ChartDataPoint[] | - | Array of data objects. |
| xKey | string | - | Key in each data object to use as the x-axis label. |
| series | ChartSeries[] | - | Lines to render. Each entry has key, label, and optional color. |
| height | number | 240 | Chart height in px. |
| showLegend | boolean | true | Whether to show the legend. |
| showGrid | boolean | true | Whether to show the background grid. |
| className | string | "" | Extra classes applied to the container. |