Multi-Series Comparison

Compare up to 6 data series on a single line chart with interactive legend toggling.

Product Revenue
JanFebMarAprMayJun010203040Product AProduct BProduct C

Code

example.tsx
import { LineChart } from "@chartts/react"

<LineChart
  data={revenueData}
  x="month"
  y={["productA", "productB", "productC"]}
  className="h-72"
/>