Skip to content

Line

const Line: ForwardRefExoticComponent<LineComponentProps & RefAttributes<ChartRef>>

Defined in: index.tsx:178

Line chart React component. Forwards a ChartRef for imperative ops.

Example

import { Line } from '@arshad-shah/swift-chart/react';
<Line
data={salesData}
mapping={{ x: 'month', y: ['revenue', 'target'] }}
theme="midnight"
smooth dots
height={320}
/>